metamaps--metamaps/frontend/src/routes/Notifications.js
Metamaps on Linode 4a7595e76d fixup imports
2017-10-14 14:55:42 -04:00

18 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