diff --git a/src/components/pages/home.jsx b/src/components/pages/home.jsx
index a4c0e86..07c4428 100644
--- a/src/components/pages/home.jsx
+++ b/src/components/pages/home.jsx
@@ -39,7 +39,7 @@ class Home extends React.Component {
if (this.state.tagline === 'rainbow') {
return (I hope this CSS rainbow effect works in all browsers!
);
}
- return (
);
+ return (
);
}
return (
diff --git a/src/components/panels/markdown.jsx b/src/components/panels/markdown.jsx
index fb62313..480b3b4 100644
--- a/src/components/panels/markdown.jsx
+++ b/src/components/panels/markdown.jsx
@@ -7,9 +7,9 @@ class Markdown extends React.Component {
constructor(props) {
super(props);
- if (props.source !== undefined) {
+ if (props.data !== undefined) {
this.state = {
- data: props.source
+ data: props.data
};
} else {
this.state = {
@@ -21,7 +21,7 @@ class Markdown extends React.Component {
render() {
if (this.state.data) {
- return ();
+ return ();
} else {
return (Loading markdown...
);
}
diff --git a/src/components/panels/news.jsx b/src/components/panels/news.jsx
index 92eaef2..a7f3c9a 100644
--- a/src/components/panels/news.jsx
+++ b/src/components/panels/news.jsx
@@ -20,7 +20,7 @@ class News extends React.Component {
return (
{Object.keys(this.state).map((key) =>
-
+
)}