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