From 4a755af113fcc514d1efb3f44514d018ccc2a2d9 Mon Sep 17 00:00:00 2001 From: NikolaBorislavovHristov Date: Thu, 14 Jun 2018 19:49:04 +0300 Subject: [PATCH] Calendar route added --- src/app/app.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/app.js b/src/app/app.js index 902266932..ee5d45bdd 100644 --- a/src/app/app.js +++ b/src/app/app.js @@ -3,9 +3,10 @@ import { BrowserRouter, Switch, Route, Redirect } from 'react-router-dom'; import NavBar from './NavBar'; import styles from './styles'; -const Board = () =>
You're on the Board Tab
; -const Discover = () =>
You're on the Discover Tab
; -const Library = () =>
You're on the Library Tab
; +const Board = () =>
You're on the Board Tab
; +const Discover = () =>
You're on the Discover Tab
; +const Library = () =>
You're on the Library Tab
; +const Calendar = () =>
You're on the Calendar Tab
; class App extends Component { render() { @@ -17,6 +18,7 @@ class App extends Component { +