2018-10-18 17:30:08 +00:00
|
|
|
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>
|
2018-10-18 17:51:32 +00:00
|
|
|
<QuizGame />
|
2018-10-18 17:30:08 +00:00
|
|
|
</Typography>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default QuizPage;
|