UNPKG

react-styleguidist

Version:
12 lines (9 loc) 209 B
import { Component, PropTypes } from 'react'; export default class Wrapper extends Component { static propTypes = { children: PropTypes.node.isRequired, }; render() { return this.props.children; } }