aboutsummaryrefslogtreecommitdiff
path: root/src/routes.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.tsx')
-rw-r--r--src/routes.tsx13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/routes.tsx b/src/routes.tsx
index af129c7..2a1f452 100644
--- a/src/routes.tsx
+++ b/src/routes.tsx
@@ -1,14 +1,15 @@
import { Switch, Route } from 'react-router-dom';
+
import './css/nomargin.css';
+import './css/color.css';
+import './css/link.css';
-import home from './pages/home';
+import HomePage from './pages/home';
function Router() {
- return (
- <Switch>
- <Route exact path='/' component={home}/>
- </Switch>
- );
+ return <Switch>
+ <Route exact path='/' component={HomePage}/>
+ </Switch>;
}
export default Router;