import { PropsWithChildren } from 'react' import './app.less' function App({ children }: PropsWithChildren) { return children } export default App