Blame view
imports/client/layouts/NonOrgApp.js
1.37 KB
8c4a3096b
|
1 2 |
import React, { Component } from 'react'; import { Grid } from 'react-bootstrap'; |
dc0d0c739
|
3 4 5 6 7 8 9 10 11 12 13 |
import { Link } from 'react-router'; import { Row, Col, FormGroup, ControlLabel, FormControl, InputGroup, Button, Navbar,Modal, Nav, NavItem, Glyphicon, Collapse, NavbarToggler, NavbarBrand, NavLink, DropdownItem, DropdownToggle, DropdownMenu, NavDropdown, MenuItem } from 'react-bootstrap'; import { LinkContainer } from 'react-router-bootstrap'; import './NonOrgApp.css'; |
8c4a3096b
|
14 15 16 |
/** * user based redirection will take place here */ |
878ca8a15
|
17 |
export class NonOrgApp extends Component { |
8c4a3096b
|
18 19 20 |
constructor(props) { super(props); this.state = { |
2b1ad7917
|
21 |
|
8c4a3096b
|
22 23 24 25 26 |
}; }; render(){ return ( <div> |
dc0d0c739
|
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
<Navbar> <Navbar.Header> <Navbar.Brand className='brand-style'> <Link to="/">YOUNGDESK</Link> </Navbar.Brand> <Navbar.Toggle /> </Navbar.Header> <Navbar.Collapse> <Nav pullRight> <LinkContainer to="login" > <NavItem className='nav-item' eventKey={ 2 } href="/login">Log in</NavItem> </LinkContainer> </Nav> </Navbar.Collapse> </Navbar> |
8c4a3096b
|
42 43 44 45 46 47 48 |
<Grid> { this.props.children } </Grid> </div> ) } } |