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

26 lines
600 B
JavaScript
Raw Normal View History

2019-07-28 00:24:05 +00:00
import React from 'react';
import ReactMarkdown from 'react-markdown';
import AboutMarkdown from '../static/about.md';
class About extends React.Component {
constructor () {
super();
this.state = { about: '' };
}
componentWillMount() {
fetch(AboutMarkdown).then(res => res.text()).then(text => this.setState({ markdown: text }));
}
render () {
const { markdown } = this.state;
return (
<div className="content">
<ReactMarkdown source={markdown }/>
</div>
);
}
2019-06-22 20:53:59 +00:00
}
export default About;