9 lines
117 B
TypeScript
9 lines
117 B
TypeScript
export default function AuthLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <>{children}</>;
|
|
}
|
|
|