This repository has been archived on 2023-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
IMIE_CC/pages/_app.jsx
Florian Bouillon 215383a526
Ajout de la page Flux
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-04-28 16:58:20 +02:00

16 lines
270 B
JavaScript

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>
)
}
}