15 lines
342 B
JavaScript
15 lines
342 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import * as actionCreators from '../actions';
|
||
|
import SetupGuide from '../components/SetupGuide';
|
||
|
|
||
|
const mapStateToProps = (state) => {
|
||
|
const { dashboard } = state;
|
||
|
const props = { dashboard };
|
||
|
return props;
|
||
|
};
|
||
|
|
||
|
export default connect(
|
||
|
mapStateToProps,
|
||
|
actionCreators,
|
||
|
)(SetupGuide);
|