9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
import './app.scss'
|
|
import { PropsWithChildren } from 'react'
|
|
|
|
function App(props: PropsWithChildren) {
|
|
return props.children
|
|
}
|
|
|
|
export default App
|