Files
supabase/studio/components/ui/Forms/FormsContainer.tsx
Jonathan Summers-Muir 2899306988 chore: add templates form
2022-06-17 00:06:20 +08:00

11 lines
340 B
TypeScript

function FormsContainer(props: { children: React.ReactNode; header?: string }) {
return (
<div className="mx-auto max-w-4xl px-5 pt-12 pb-20">
{props.header && <h1 className="text-scale-1200 mb-8 text-3xl">{props.header}</h1>}
<div className="space-y-20">{props.children}</div>
</div>
)
}
export { FormsContainer }