app.ts 151 B

12345678
  1. import { PropsWithChildren } from 'react'
  2. import './app.less'
  3. function App({ children }: PropsWithChildren) {
  4. return children
  5. }
  6. export default App