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, Fragment } from 'react';
import FlameLinkComponentCreations from '../components/FlameLinkComponentCreations';
import FlameLinkComponentCreations from '../components/flamelink/FlameLinkComponentCreations';
import flamelinkApp from '../flamelink.js';
class About extends Component {

View File

@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import ContactForm from '../components/ContactForm.js'
import ContactForm from '../components/forms/ContactForm.js'
class Contact extends Component {
componentDidMount() {

View File

@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import FlameLinkComponentCreations from '../components/FlameLinkComponentCreations';
import FlameLinkCollectionGallery from '../components/FlameLinkCollectionGallery';
import FlameLinkComponentCreations from '../components/flamelink/FlameLinkComponentCreations';
import FlameLinkCollectionGallery from '../components/flamelink/FlameLinkCollectionGallery';
import flamelinkApp from '../flamelink';
import Grid from '@material-ui/core/Grid';

View File

@@ -1,5 +1,5 @@
import React, { Component, Fragment } from 'react';
import FlameLinkComponentCreations from '../components/FlameLinkComponentCreations';
import FlameLinkComponentCreations from '../components/flamelink/FlameLinkComponentCreations';
import flamelinkApp from '../flamelink.js';
class Info extends Component {

View File

@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import ReportForm from '../components/ReportForm';
import ReportForm from '../components/forms/ReportForm';
class Report extends Component {
componentDidMount() {

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}/>
);
}
}