2017-10-13 13:58:21 -04: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 12:03:05 -04:00
|
|
|
<NavBarLink show matchChildRoutes href="/notifications"
|
|
|
|
linkClass="notificationsLink" text="Notifications" />
|
2017-10-13 13:58:21 -04:00
|
|
|
<NavBarLink show href="/" linkClass="myMaps" text="Maps" />
|
|
|
|
</NavBar>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Notifications
|