Frontend rewritten in TypeScript, added Node 18 support
This commit is contained in:
13
client/src/containers/SetupGuide.ts
Normal file
13
client/src/containers/SetupGuide.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import * as actionCreators from '../actions';
|
||||
|
||||
import SetupGuide from '../components/SetupGuide';
|
||||
|
||||
const mapStateToProps = (state: any) => {
|
||||
const { dashboard } = state;
|
||||
const props = { dashboard };
|
||||
return props;
|
||||
};
|
||||
|
||||
export default connect(mapStateToProps, actionCreators)(SetupGuide);
|
||||
Reference in New Issue
Block a user