summaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
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 />
</>
)
}