7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
export default function LoggedOutLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|