rewrote structure for new nav

This commit is contained in:
Al Duncanson
2018-10-25 01:09:49 -04:00
parent 582b3f4a6a
commit 1c959b7a32
5 changed files with 261 additions and 126 deletions

View File

@@ -3,11 +3,11 @@ import QuizGame from '../components/QuizGame';
class QuizPage extends Component {
render() {
return (
<QuizGame />
);
}
render() {
return (
<QuizGame difficulty={this.props.difficulty}/>
);
}
}
export default QuizPage;