Blame view

imports/ui/components/public-navigation.js 314 Bytes
2b1ad7917   tmcdeveloper   wip moving to Met...
1
  import React from 'react';
b2b910457   tmcdeveloper   wire up duct tape...
2
  import { Link } from 'react-router';
2b1ad7917   tmcdeveloper   wip moving to Met...
3
  import { Nav, NavItem } from 'react-bootstrap';
f7c1860b5   tmcdeveloper   add basic accepta...
4
5
6
7
8
9
  export const PublicNavigation = () => (
    <Nav pullRight>
      <li role="presentation"><Link to="/signup">Sign Up</Link></li>
      <li role="presentation"><Link to="/login">Log In</Link></li>
    </Nav>
  )