From 67a771cbb02ec9da3c60704901f3150b46a7262b Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 9 Aug 2017 14:29:14 +0300 Subject: Create basic projects page with add-button --- src/routes/index.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/routes/index.js (limited to 'src/routes') diff --git a/src/routes/index.js b/src/routes/index.js new file mode 100644 index 00000000..54dc0703 --- /dev/null +++ b/src/routes/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import {BrowserRouter, Route, Switch} from "react-router-dom"; +import Home from "../pages/Home"; +import NotFound from "../pages/NotFound"; +import Projects from "../pages/Projects"; + +const Routes = () => ( + + + + + + + +); + +export default Routes; -- cgit v1.2.3