| 8 | import { DynamicLogo } from '@/components/core/logo'; |
| 9 | |
| 10 | export interface LayoutProps { |
| 11 | children: React.ReactNode; |
| 12 | } |
| 13 | |
| 14 | export function Layout({ children }: LayoutProps): React.JSX.Element { |
| 15 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected