@mapbox/jsxtreme-markdown
Version:
Transform Markdown into JSX or React component modules
24 lines (21 loc) • 453 B
JavaScript
import React from 'react';
class Wrapper extends React.PureComponent {
render() {
return (
<div>
<div>This is the wrapper. Here are its props:</div>
<div>
{this.props.number}
</div>
<div>
{this.props.frontMatter.title}
</div>
<div>
{this.props.frontMatter.quantity}
</div>
{this.props.children}
</div>
);
}
}
export default Wrapper;