From 431e91df70b8d8715b2e05d62efbbf03ea7a9b18 Mon Sep 17 00:00:00 2001 From: nathan boileau Date: Sat, 8 Oct 2022 08:44:27 +0200 Subject: [PATCH] Renomage --- website/src/App.js | 4 ++-- website/src/components/{Banner.js => Main.js} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename website/src/components/{Banner.js => Main.js} (100%) diff --git a/website/src/App.js b/website/src/App.js index 12946039..7b63dfc4 100644 --- a/website/src/App.js +++ b/website/src/App.js @@ -1,12 +1,12 @@ import './App.css'; import 'bootstrap/dist/css/bootstrap.min.css'; -import { Banner } from './components/Banner'; +import { Main } from './components/Main'; function App() { return (
- +
); } diff --git a/website/src/components/Banner.js b/website/src/components/Main.js similarity index 100% rename from website/src/components/Banner.js rename to website/src/components/Main.js