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.
|
- import type { FC, ReactNode } from 'react'
-
- type Props = { children: ReactNode }
-
-
- export default (({ children }: Props) => (
- <div className="max-w-xl mx-auto p-4 space-y-4">
- {children}
- </div>)) satisfies FC<Props>
|