Each question contains a code snippet and four answer choices. Look carefully at the code and choose the one correct answer.
After answering all 23 questions you'll be shown your results.
)} {!intro && !current && ( <>
Star on GitHub )} ); Game.propTypes = { style: PropTypes.object.isRequired, onStart: PropTypes.func.isRequired, onRestart: PropTypes.func.isRequired, answers: PropTypes.array.isRequired, intro: PropTypes.bool.isRequired, current: PropTypes.object }; export default connect( state => ({ intro: getIntro(state), current: getCurrent(state), answers: getAnswers(state) }), { onStart: () => start(), onRestart: () => restart() } )(Game);