2018-10-18 17:30:08 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import QuizGame from '../components/QuizGame';
|
|
|
|
|
|
|
|
|
|
|
|
class QuizPage extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
2018-10-22 23:25:49 +00:00
|
|
|
<QuizGame />
|
2018-10-18 17:30:08 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default QuizPage;
|