diff --git a/src/App.js b/src/App.js index 5687b2ae5e491fae79f2fd3f7d64167e14f115f7..a2e655961c1c5ea640f13864a8415409fa5164cc 100644 --- a/src/App.js +++ b/src/App.js @@ -1,5 +1,6 @@ import './App.css'; import { Counter } from './Counter'; +import Grid from './Grid.js'; const App = () => { const compteurs = [] @@ -13,7 +14,9 @@ const App = () => { <h1>Bienvenue sur notre super site !</h1> </div> </div> - {compteurs} + <Grid> + {compteurs} + </Grid> </div> ); }