Fixed minor bug with theme swap and restructured components folder.

This commit is contained in:
wildscotsmen
2018-12-01 19:56:09 -05:00
parent c9a771d1bc
commit d8119c8773
24 changed files with 52 additions and 34 deletions

View File

@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import ViewSightings from '../components/ViewSightings.js';
import ViewSightings from '../components/list/ViewSightings.js';
class Sighting extends Component {
componentDidMount() {
@@ -8,7 +8,7 @@ class Sighting extends Component {
render() {
return (
<ViewSightings/>
<ViewSightings themeName={this.props.themeName}/>
);
}
}