1
0
Fork 0
This repository has been archived on 2022-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
sudoscientist-js-frontend/src/components/About.js
2019-10-16 19:04:33 -04:00

24 lines
581 B
JavaScript

import React from 'react';
import 'github-markdown-css'
import ReactMarkdown from 'react-markdown';
import AboutMarkdown from '../static/about.md';
class About extends React.Component {
state = { about: '' };
componentDidMount() {
fetch(AboutMarkdown).then(res => res.text()).then(text => this.setState({ markdown: text }));
}
render () {
const { markdown } = this.state;
return (
<div className="markdown-body">
<ReactMarkdown source={markdown} />
</div>
);
}
}
export default About;