From 625fe7636c683c682bf7483fd9415c62299589e8 Mon Sep 17 00:00:00 2001 From: Viarezo <viarezo@viarezo.fr> Date: Sat, 9 Oct 2021 15:46:06 +0200 Subject: [PATCH] git gud --- src/App.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 5687b2a..a2e6559 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> ); } -- GitLab