mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 14:44:23 +08:00
7 lines
258 B
TypeScript
7 lines
258 B
TypeScript
import { type FC, type PropsWithChildren } from 'react'
|
|
|
|
export const LayoutMainContent: FC<PropsWithChildren<{ className?: string }>> = ({
|
|
className,
|
|
children,
|
|
}) => <div className={['max-w-7xl px-5 mx-auto py-8', className].join(' ')}>{children}</div>
|