diff --git a/src/components/FlameLinkFieldSetContent.js b/src/components/FlameLinkFieldSetContent.js
index 61db810..b8b4514 100644
--- a/src/components/FlameLinkFieldSetContent.js
+++ b/src/components/FlameLinkFieldSetContent.js
@@ -21,11 +21,11 @@ class FlameLinkFieldSetContent extends Component {
)
}
if(type === 'textarea'){
- return (
-
- {fieldsetContent[key]}
-
- )
+ return (
+
+ {fieldsetContent[key]}
+
+ )
}
if (type === 'media'){
for (var val in fieldsetContent[key]){
diff --git a/src/components/FlameLinkImage.js b/src/components/FlameLinkImage.js
index aede55f..0a474f4 100644
--- a/src/components/FlameLinkImage.js
+++ b/src/components/FlameLinkImage.js
@@ -1,7 +1,7 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
import flamelinkApp from '../flamelink.js';
-
+import '../css/FlameLinkImage.css';
class FlameLinkImage extends Component {
constructor() {
@@ -20,7 +20,7 @@ class FlameLinkImage extends Component {
render() {
return(
-
+
);
}
diff --git a/src/components/Main.js b/src/components/Main.js
index 8ecb20a..d64d8bf 100644
--- a/src/components/Main.js
+++ b/src/components/Main.js
@@ -21,7 +21,7 @@ import ListIcon from '@material-ui/icons/List';
import SlideshowIcon from '@material-ui/icons/Slideshow';
import Home from '../pages/Home';
import ViewMap from '../pages/ViewMap';
-import Info from '../pages/Info';
+import About from '../pages/About';
import Quiz from '../pages/QuizPage';
import SightingList from '../pages/SightingList';
import Report from '../pages/Report';
@@ -195,7 +195,7 @@ class ResponsiveDrawer extends React.Component {
{this.state.key === 'Report' && }
{this.state.key === 'Map' && }
{this.state.key === 'List' && }
- {this.state.key === 'About' && }
+ {this.state.key === 'About' && }
{this.state.key === 'Easy-Quiz' && }
{this.state.key === 'Medium-Quiz' && }
{this.state.key === 'Hard-Quiz' && }
diff --git a/src/css/FlameLinkImage.css b/src/css/FlameLinkImage.css
new file mode 100644
index 0000000..7abf189
--- /dev/null
+++ b/src/css/FlameLinkImage.css
@@ -0,0 +1,4 @@
+.flamelinkImage {
+ width: 100%;
+ max-width: 500px;
+}
diff --git a/src/pages/About.js b/src/pages/About.js
new file mode 100644
index 0000000..1eb02c6
--- /dev/null
+++ b/src/pages/About.js
@@ -0,0 +1,34 @@
+import React, { Component, Fragment } from 'react';
+import FlameLinkComponentCreations from '../components/FlameLinkComponentCreations';
+import flamelinkApp from '../flamelink.js';
+
+class About extends Component {
+ constructor() {
+ super();
+
+ global.schemaName = 'martenSchemaDemo';
+
+ this.state = {
+ schemaDetails: '',
+ }
+
+ flamelinkApp.schemas.getFields(global.schemaName, { fields: [ 'title', 'key', 'type', 'gridColumns', 'description', 'options' ] })
+ .then(result => this.setState({
+ schemaDetails: result
+ }))
+ }
+
+ render() {
+
+ return (
+
+
+
+
+
+
+ );
+ }
+}
+
+export default About;