mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 05:54:18 +08:00
12 lines
218 B
TypeScript
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
|