summaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-07-19 13:47:16 +0530
committerrohan09-raj <[email protected]>2022-07-19 13:47:16 +0530
commita574ddfda9d7ce7c5266d1f99acf351546f8857e (patch)
tree7a79ed2c7da14f976ac6994f802c791832fec77c /src/App.js
parent391e1cfee65e66bc9ceeea71c8015effc02e2bbf (diff)
Added routes, enrollment, update component
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.js b/src/App.js
index f61c245..c39f14e 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,10 +1,10 @@
import React from 'react'
-import Home from './pages/Home/Home'
+import Index from './routes'
const App = () => {
return (
<>
- <Home />
+ <Index />
</>
)
}