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