diff options
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ import React from 'react' -import Home from './pages/Home/Home' +import Index from './routes' const App = () => { return ( <> - <Home /> + <Index /> </> ) } |