This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/src/containers/LevelList.ts

15 lines
359 B
TypeScript
Raw Normal View History

import { connect } from "react-redux";
import LevelListPage from "../pages/levelList";
const mapStateToProps = state => {
return {
levels: state.levels,
};
};
const mapDispatchToProps = dispatch => { return {} };
const LevelListContainer = connect(mapStateToProps,
mapDispatchToProps)(LevelListPage);
export default LevelListContainer;