diff --git a/src/components/Main.js b/src/components/Main.js
index f183ec8..5d7921c 100644
--- a/src/components/Main.js
+++ b/src/components/Main.js
@@ -7,7 +7,7 @@ import Tab from '@material-ui/core/Tab';
import Typography from '@material-ui/core/Typography';
import Home from '../pages/Home';
import ViewMap from '../pages/ViewMap';
-import QuizGame from '../pages/QuizGame';
+import QuizPage from '../pages/QuizPage';
import SightingList from '../pages/SightingList';
import Report from '../pages/Report';
import Info from '../pages/Info';
@@ -59,7 +59,7 @@ class SimpleTabs extends React.Component {
{value === 0 && }
{value === 1 && }
{value === 2 && }
- {value === 3 && }
+ {value === 3 && }
{value === 4 && }
{value === 5 && }
diff --git a/src/components/QuizGame.js b/src/components/QuizGame.js
new file mode 100644
index 0000000..1705708
--- /dev/null
+++ b/src/components/QuizGame.js
@@ -0,0 +1,73 @@
+import React, { Fragment } from 'react';
+import Grid from '@material-ui/core/Grid';
+import Quiz from 'react-quiz-component';
+
+class QuizGame extends React.Component {
+ quiz = {
+ "quizTitle": "Trail Cam Quiz",
+ "questions": [
+ {
+ "question": What animal is this?
,
+ "questionType": "text",
+ "answers": [
+ "American marten",
+ "American mink",
+ "Black-footed ferret"
+ ],
+ "correctAnswer": "1"
+ },
+ {
+ "question": What animal do these tracks belong to?
,
+ "questionType": "text",
+ "answers": [
+ "American mink",
+ "North American raccoon",
+ "American marten"
+ ],
+ "correctAnswer": "3"
+ },
+ {
+ "question": What animal is this?
,
+ "questionType": "text",
+ "answers": [
+ "American marten",
+ "American mink",
+ "Black-footed ferret"
+ ],
+ "correctAnswer": "2"
+ },
+ {
+ "question": What animal is this?
,
+ "questionType": "text",
+ "answers": [
+ "American marten",
+ "American mink",
+ "Black-footed ferret"
+ ],
+ "correctAnswer": "2"
+ },
+ {
+ "question": What animal do these tracks belong to?
,
+ "questionType": "text",
+ "answers": [
+ "American marten",
+ "American mink",
+ "Black-footed ferret"
+ ],
+ "correctAnswer": "2"
+ },
+ ]
+ };
+
+ render() {
+ return (
+
+
+
+
+
+ )
+ }
+}
+
+export default QuizGame;
\ No newline at end of file
diff --git a/src/pages/QuizGame.js b/src/pages/QuizGame.js
deleted file mode 100644
index b0f53b0..0000000
--- a/src/pages/QuizGame.js
+++ /dev/null
@@ -1,77 +0,0 @@
-import React, { Component, Fragment } from 'react';
-import Typography from '@material-ui/core/Typography';
-import Grid from '@material-ui/core/Grid';
-import Quiz from 'react-quiz-component';
-
-class QuizGame extends Component {
-
- quiz = {
- "quizTitle": "Trail Cam Quiz",
- "questions": [
- {
- "question": What animal is this?
,
- "questionType": "text",
- "answers": [
- "American marten",
- "American mink",
- "Black-footed ferret"
- ],
- "correctAnswer": "1"
- },
- {
- "question": What animal do these tracks belong to?
,
- "questionType": "text",
- "answers": [
- "American mink",
- "North American raccoon",
- "American marten"
- ],
- "correctAnswer": "3"
- },
- {
- "question": What animal is this?
,
- "questionType": "text",
- "answers": [
- "American marten",
- "American mink",
- "Black-footed ferret"
- ],
- "correctAnswer": "2"
- },
- {
- "question": What animal is this?
,
- "questionType": "text",
- "answers": [
- "American marten",
- "American mink",
- "Black-footed ferret"
- ],
- "correctAnswer": "2"
- },
- {
- "question": What animal do these tracks belong to?
,
- "questionType": "text",
- "answers": [
- "American marten",
- "American mink",
- "Black-footed ferret"
- ],
- "correctAnswer": "2"
- },
- ]
- };
-
- render() {
- return (
-
-
-
-
-
-
-
- );
- }
-}
-
-export default QuizGame;
diff --git a/src/pages/QuizPage.js b/src/pages/QuizPage.js
new file mode 100644
index 0000000..ef6cb3f
--- /dev/null
+++ b/src/pages/QuizPage.js
@@ -0,0 +1,16 @@
+import React, { Component } from 'react';
+import Typography from '@material-ui/core/Typography';
+import QuizGame from '../components/QuizGame';
+
+
+class QuizPage extends Component {
+ render() {
+ return (
+
+
+
+ );
+ }
+}
+
+export default QuizPage;