Ossido
Loading...
Props for a layout component - { children } for the wrapped subtree.
interface OssidoLayoutProps { children: ReactNode; }
import type { OssidoLayoutProps } from '@ossido-labs/ossido'; export default function Layout({ children }: OssidoLayoutProps) { return <section>{children}</section>; }