OrgApp.js
509 Bytes
import React, { Component } from 'react';
import { Grid } from 'react-bootstrap';
import {AppNavigationController} from '/imports/client/views/org/app/module/navigation/index';
/**
* user based redirection will take place here
*/
export class App extends Component {
constructor(props) {
super(props);
this.state = {
};
};
render(){
return (
<div className="app-main-layout">
{ this.props.children }
</div>
)
}
}