Blame view

imports/client/views/nonOrg/app/module/navigation/PublicNavigation.js 458 Bytes
8c4a3096b   Deepak   added settings an...
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;