Adding React.js, Redux, revamping dashboard
This commit is contained in:
16
app/assets/javascripts/components/components/frontend.jsx
Normal file
16
app/assets/javascripts/components/components/frontend.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import NavBar from './nav_bar';
|
||||
import ColumnsArea from './columns_area';
|
||||
|
||||
const Frontend = React.createClass({
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<div style={{ flex: '0 0 auto', display: 'flex', width: '100%', height: '100%', background: '#1a1c23' }}>
|
||||
<NavBar />
|
||||
<ColumnsArea />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
export default Frontend;
|
||||
Reference in New Issue
Block a user