import "./app.scss"; import type { ReactNode } from "react"; function App(props: { children?: ReactNode }) { const { children } = props; return children ?? null; } export default App;