Blame view

imports/ui/components/PublicNavigation.js 458 Bytes
2b1ad7917   tmcdeveloper   wip moving to Met...
1
  import React from 'react';
b9fec275b   tmcdeveloper   add fix for activ...
2
  import { LinkContainer } from 'react-router-bootstrap';
2b1ad7917   tmcdeveloper   wip moving to Met...
3
  import { Nav, NavItem } from 'react-bootstrap';
3540345c5   themeteorchef   handful of fixes
4
  const PublicNavigation = () => (
f7c1860b5   tmcdeveloper   add basic accepta...
5
    <Nav pullRight>
b9fec275b   tmcdeveloper   add fix for activ...
6
7
8
9
10
11
      <LinkContainer to="signup">
        <NavItem eventKey={ 1 } href="/signup">Sign Up</NavItem>
      </LinkContainer>
      <LinkContainer to="login">
        <NavItem eventKey={ 2 } href="/login">Log In</NavItem>
      </LinkContainer>
f7c1860b5   tmcdeveloper   add basic accepta...
12
    </Nav>
f0c912bf1   tmcdeveloper   add method tests ...
13
  );
3540345c5   themeteorchef   handful of fixes
14
15
  
  export default PublicNavigation;