mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-08 05:56:38 +00: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>;
|
|
}
|