Blame view
imports/client/views/org/navigation/PublicNavigation.js
458 Bytes
b48d5cb1c
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from 'react'; import { LinkContainer } from 'react-router-bootstrap'; import { Nav, NavItem } from 'react-bootstrap'; const PublicNavigation = () => ( <Nav pullRight> <LinkContainer to="signup"> <NavItem eventKey={ 1 } href="/signup">Sign Up</NavItem> </LinkContainer> <LinkContainer to="login"> <NavItem eventKey={ 2 } href="/login">Log In</NavItem> </LinkContainer> </Nav> ); export default PublicNavigation; |