Files
supabase/apps/www/components/Container.tsx
2022-04-21 12:04:22 +02:00

12 lines
218 B
TypeScript

import { ReactNode, FunctionComponent } from 'react'
type Props = {
children?: ReactNode
}
const Container: FunctionComponent = ({ children }: Props) => {
return <div>{children}</div>
}
export default Container