返回 presentation-ai
layout.tsx
根目录 / src / app / presentation / create / layout.tsx
1 "use client";
2
3 import { type ReactNode } from "react";
4
5 interface LayoutProps {
6 children: ReactNode;
7 }
8
9 export default function Layout({ children }: LayoutProps) {
10 return (
11 <div className="flex h-full w-full flex-col">
12 <main className="relative flex flex-1">{children}</main>
13 </div>
14 );
15 }
16
16 lines Plain Text