aswi20220x00-gitlab/webapp/pages/_app.tsx @ c2a89232
1 |
import '../styles/globals.css' |
---|---|
2 |
import type {AppProps} from 'next/app' |
3 |
|
4 |
import 'bootstrap/dist/css/bootstrap.css' |
5 |
|
6 |
function MyApp({Component, pageProps}: AppProps) { |
7 |
return <Component {...pageProps} /> |
8 |
}
|
9 |
|
10 |
export default MyApp |