Ajout de la page Flux

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-04-28 16:58:20 +02:00
parent 9a2337945e
commit 215383a526
9 changed files with 1674 additions and 1895 deletions

15
pages/_app.jsx Normal file
View File

@ -0,0 +1,15 @@
import App from 'next/app'
import '../style.css'
import Layout from '../components/Layout'
export default class MyApp extends App {
render() {
const { Component, pageProps } = this.props
return (
<Layout>
<Component {...pageProps} />
</Layout>
)
}
}