NonOrgApp.js
1007 Bytes
import React, { Component } from 'react';
import { Grid } from 'react-bootstrap';
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 {AppNavigation} from '/imports/client/views/nonOrg/app/module/navigation/AppNavigation.js';
import './NonOrgApp.css';
/**
* user based redirection will take place here
*/
export class NonOrgApp extends Component {
constructor(props) {
super(props);
this.state = {
};
};
render(){
return (
<div>
<AppNavigation/>
<Grid>
{ this.props.children }
</Grid>
</div>
)
}
}