17 lines
475 B
JavaScript
17 lines
475 B
JavaScript
import React, { Component } from 'react'
|
|
import NavBar from '../components/NavBar'
|
|
import NavBarLink from '../components/NavBarLink'
|
|
|
|
class Notifications extends Component {
|
|
render = () => {
|
|
return (
|
|
<NavBar>
|
|
<NavBarLink show matchChildRoutes href="/notifications"
|
|
linkClass="notificationsLink" text="Notifications" />
|
|
<NavBarLink show href="/" linkClass="myMaps" text="Maps" />
|
|
</NavBar>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Notifications
|