Update README

Fixes #91
This commit is contained in:
Michael Jackson
2018-04-28 19:09:15 -07:00
parent 6b6875f8f8
commit 818f84faa6
7 changed files with 64 additions and 24 deletions

View File

@ -2,15 +2,10 @@ import "./About.css";
import React from "react";
import contentHTML from "./About.md";
import html from "../docs/about.md";
function About() {
return (
<div
className="wrapper"
dangerouslySetInnerHTML={{ __html: contentHTML }}
/>
);
return <div className="wrapper" dangerouslySetInnerHTML={{ __html: html }} />;
}
export default About;