Blame view
imports/client/layouts/NonOrgApp.js
424 Bytes
8c4a3096b
|
1 2 |
import React, { Component } from 'react'; import { Grid } from 'react-bootstrap'; |
8c4a3096b
|
3 4 5 |
/** * user based redirection will take place here */ |
878ca8a15
|
6 |
export class NonOrgApp extends Component { |
8c4a3096b
|
7 8 9 |
constructor(props) { super(props); this.state = { |
2b1ad7917
|
10 |
|
8c4a3096b
|
11 12 13 14 15 |
}; }; render(){ return ( <div> |
8c4a3096b
|
16 17 18 19 20 21 22 |
<Grid> { this.props.children } </Grid> </div> ) } } |