From c44c85af7ade620419c097d9fc8ce4c9c66c00a7 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Sun, 17 Jul 2022 23:17:33 +0530 Subject: Built a basic folder structure --- src/App.js | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) (limited to 'src/App.js') diff --git a/src/App.js b/src/App.js index 3784575..2f7a2bc 100644 --- a/src/App.js +++ b/src/App.js @@ -1,25 +1,12 @@ -import logo from './logo.svg'; -import './App.css'; +import React from 'react'; +import Home from './pages/Home/Home'; -function App() { +const App = () => { return ( -
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
-
+ <> + + ); -} +}; export default App; -- cgit