10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
export default async function Layout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div className="max-w-7xl flex flex-col gap-12 items-start">{children}</div>
|
|
);
|
|
}
|