UNPKG

@mapbox/jsxtreme-markdown

Version:
24 lines (21 loc) 453 B
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;