initial commit

This commit is contained in:
Al Duncanson
2018-09-19 16:42:56 -04:00
parent f0c7b1712d
commit aa9ab5530d
18 changed files with 11953 additions and 0 deletions

17
src/pages/Home.js Normal file
View File

@@ -0,0 +1,17 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
class Home extends Component {
render() {
return (
<div>
<Typography variant='display1' align='center' gutterBottom>
Home
</Typography>
</div>
);
}
}
export default Home;

14
src/pages/Info.js Normal file
View File

@@ -0,0 +1,14 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
class Info extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
Info
</Typography>
);
}
}
export default Info;

14
src/pages/Map.js Normal file
View File

@@ -0,0 +1,14 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
class Map extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
Map
</Typography>
);
}
}
export default Map;

14
src/pages/Quiz.js Normal file
View File

@@ -0,0 +1,14 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
class Quiz extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
Quiz
</Typography>
);
}
}
export default Quiz;

14
src/pages/Sighting.js Normal file
View File

@@ -0,0 +1,14 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
class Sighting extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
Sightings
</Typography>
);
}
}
export default Sighting;