Added page titles and modified Favicon.

This commit is contained in:
wildscotsmen 2018-11-08 21:53:19 -05:00
parent e0e1a7e9e4
commit a343458f8c
7 changed files with 33 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -18,6 +18,10 @@ class Home extends Component {
}))
}
componentDidMount() {
document.title = 'Marten Tracker | Home';
}
render() {
return (
<FlameLinkComponentCreations schemaDetails={this.state.schemaDetails} />

View File

@ -18,6 +18,10 @@ class Info extends Component {
}))
}
componentDidMount() {
document.title = 'Marten Tracker | Info';
}
render() {
return (

View File

@ -3,6 +3,10 @@ import QuizGame from '../components/QuizGame';
class QuizPage extends Component {
componentDidMount() {
document.title = 'Marten Tracker | Quiz';
}
render() {
return (
<QuizGame difficulty={this.props.difficulty}/>

View File

@ -2,6 +2,10 @@ import React, { Component } from 'react';
import ReportForm from '../components/ReportForm';
class Report extends Component {
componentDidMount() {
document.title = 'Marten Tracker | Report';
}
render() {
return (
<ReportForm/>

View File

@ -2,6 +2,10 @@ import React, { Component } from 'react';
import ViewSightings from '../components/ViewSightings.js';
class Sighting extends Component {
componentDidMount() {
document.title = 'Marten Tracker | List';
}
render() {
return (
<ViewSightings/>

View File

@ -2,6 +2,10 @@ import React, { Component } from 'react';
import GoogleMap from '../components/SightingMap';
class Sighting extends Component {
componentDidMount() {
document.title = 'Marten Tracker | Map';
}
render() {
return (
<div className='sighting-map'>