2017-10-13 17:58:21 +00:00
|
|
|
import React, { Component } from 'react'
|
|
|
|
import NavBar from '../App/Navbar'
|
|
|
|
import NavBarLink from '../App/NavBarLink'
|
|
|
|
|
|
|
|
class Notifications extends Component {
|
|
|
|
render = () => {
|
|
|
|
return (
|
|
|
|
<NavBar>
|
2017-10-14 16:03:05 +00:00
|
|
|
<NavBarLink show matchChildRoutes href="/notifications"
|
|
|
|
linkClass="notificationsLink" text="Notifications" />
|
2017-10-13 17:58:21 +00:00
|
|
|
<NavBarLink show href="/" linkClass="myMaps" text="Maps" />
|
|
|
|
</NavBar>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Notifications
|