Blame view
imports/client/layouts/NonOrgApp.js
1007 Bytes
8c4a3096b
|
1 2 |
import React, { Component } from 'react'; import { Grid } from 'react-bootstrap'; |
dc0d0c739
|
3 4 5 6 7 8 9 10 11 12 |
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'; |
316564385
|
13 |
import {AppNavigation} from '/imports/client/views/nonOrg/app/module/navigation/AppNavigation.js'; |
dc0d0c739
|
14 |
import './NonOrgApp.css'; |
8c4a3096b
|
15 16 17 |
/** * user based redirection will take place here */ |
878ca8a15
|
18 |
export class NonOrgApp extends Component { |
8c4a3096b
|
19 20 21 |
constructor(props) { super(props); this.state = { |
2b1ad7917
|
22 |
|
8c4a3096b
|
23 24 25 26 27 |
}; }; render(){ return ( <div> |
316564385
|
28 |
<AppNavigation/> |
8c4a3096b
|
29 30 31 32 33 34 35 |
<Grid> { this.props.children } </Grid> </div> ) } } |