🔥 ⚡ Major Update
* Adds Actions, Redicers and Middlewares * Adds Http Service * Adds Cancel option for Http Service * Adds HOC's for API Loader, Sidebar and Headers * Adds Random key generator for Routes
This commit is contained in:
@@ -1,12 +1,28 @@
|
||||
import React, {Component} from 'react';
|
||||
import React, { Component } from 'react';
|
||||
import { connect } from "react-redux";
|
||||
import WithHeaderFooter from '../../shared/header_footer.hoc';
|
||||
import WithSidebar from '../../shared/sidebar.hoc';
|
||||
class DashBoardContainer extends Component {
|
||||
|
||||
class DashBoardContainer extends Component{
|
||||
|
||||
render(){
|
||||
return(
|
||||
<div>Dashboard</div>
|
||||
render() {
|
||||
return (
|
||||
<div className="container-fluid">
|
||||
<div className="row">
|
||||
<div className="col-md-12">
|
||||
Dashboard
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default DashBoardContainer;
|
||||
const mapStateToProps = state => {
|
||||
return {
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
export default connect(mapStateToProps)(
|
||||
WithSidebar(WithHeaderFooter(DashBoardContainer))
|
||||
);
|
||||
Reference in New Issue
Block a user