Add Facebook copyright headers (#633)

This commit is contained in:
Yangshun Tay 2018-05-04 09:40:07 -07:00 committed by Joel Marcey
parent be54c8f035
commit 545a053289
10 changed files with 54 additions and 4 deletions

View file

@ -5,13 +5,12 @@
* LICENSE file in the root directory of this source tree.
*/
/**
* The MarkdownBlock component is used to parse markdown and render to HTML.
*/
const React = require('react');
const Remarkable = require('./Remarkable');
/**
* The MarkdownBlock component is used to parse markdown and render to HTML.
*/
class MarkdownBlock extends React.Component {
render() {
return <Remarkable source={this.props.children} />;