layout.tsx 176 B

1234567
  1. export default function PlaygroundLayout({
  2. children,
  3. }: {
  4. children: React.ReactNode;
  5. }) {
  6. return <div className="h-dvh flex flex-col overflow-hidden">{children}</div>;
  7. }