UNPKG

react-styleguidist

Version:
16 lines (12 loc) 244 B
import React, { PropTypes } from 'react'; const SectionsRenderer = ({ sections }) => { return ( <div> {sections} </div> ); }; SectionsRenderer.propTypes = { sections: PropTypes.array.isRequired, }; export default SectionsRenderer;