Closed quickrworld closed 6 years ago
Consider replacing with ES6 eqvivalent:
function mapStateToProps(state) { const { settings, decks } = state return { settings, decks } }
ES6 equivalent:
const mapStateToProps = ({ settings, decks }) => ({ settings, decks });
Changes complete.
Consider replacing with ES6 eqvivalent:
ES6 equivalent: