| 4 | import clsx from "clsx"; |
| 5 | |
| 6 | interface LayoutProps { |
| 7 | children: ReactNode; |
| 8 | className?: string; |
| 9 | centered?: boolean; |
| 10 | } |
| 11 | |
| 12 | const DefaultLayout = (props: LayoutProps) => { |
| 13 | const description = |
nothing calls this directly
no outgoing calls
no test coverage detected