mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 09:36:08 +00:00
6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
export default function VideoLayout({ children }: { children: React.ReactNode }) {
|
|
// This layout is empty - no header, no sidebar
|
|
// The video page uses full screen space
|
|
return <>{children}</>;
|
|
}
|