mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 17:00:27 -04:00
0d657df42e
Docs global top nav
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { PropsWithChildren } from 'react'
|
|
|
|
const SiteLayout = ({ children }: PropsWithChildren<{}>) => <div className="grow">{children}</div>
|
|
|
|
export default SiteLayout
|