marten-application/src/pages/QuizPage.js

14 lines
210 B
JavaScript
Raw Normal View History

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