Files
banban/banban-mini/src/app.tsx
2026-04-22 17:25:03 +08:00

9 lines
150 B
TypeScript

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