import React from 'react' import { PlaygroundHeader } from '../components/header/PlaygroundHeader' import ContextDebug from '../components/contextDebug' import { Footer } from '../components/footer/Footer' export interface MainLayoutProps { children: React.ReactNode } export function MainLayout({ children }: MainLayoutProps) { return (