10 lines
119 B
TypeScript
10 lines
119 B
TypeScript
export default function TestSessionsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|
|
|
|
|