Projekt

Obecné

Profil

Stáhnout (229 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 56cc66d8 Lukáš Vlček
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