ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
229 B

  1. import type { FC, ReactNode } from 'react'
  2. type Props = { children: ReactNode }
  3. export default (({ children }: Props) => (
  4. <div className="max-w-xl mx-auto p-4 space-y-4">
  5. {children}
  6. </div>)) satisfies FC<Props>