mirror of
https://github.com/fosrl/pangolin.git
synced 2025-09-01 07:20:06 +02:00
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
|
export default async function SetupLayout({
|
||
|
children,
|
||
|
}: {
|
||
|
children: React.ReactNode;
|
||
|
}) {
|
||
|
return <div className="mt-32">{children}</div>;
|
||
|
}
|