Updated quiz component to include questions by sponsor and also have tabs for different difficulty settings. Will implement the harder quizzes next sprint, likely.

This commit is contained in:
wildscotsmen
2018-10-22 19:25:49 -04:00
parent 7b86f4e2d6
commit 1fefd8cf1c
7 changed files with 105 additions and 35 deletions

View File

@@ -1,14 +1,11 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
import QuizGame from '../components/QuizGame';
class QuizPage extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
<QuizGame />
</Typography>
<QuizGame />
);
}
}