Sha256: 2c0898f3b75a60da02ee8dd46e3e1c0561db8b8bdb20f58f6fe1f6ca834fec50
Contents?: true
Size: 409 Bytes
Versions: 13
Compression:
Stored size: 409 Bytes
Contents
import React from 'react'; import PropTypes from "prop-types"; const propTypes = { className: PropTypes.string, id: PropTypes.string }; class SectionSeparator extends React.Component { render() { return ( <div className="pb_section_separator"> <span>SECTION SEPARATOR CONTENT</span> </div> ) } } SectionSeparator.propTypes = propTypes; export default SectionSeparator;
Version data entries
13 entries across 13 versions & 1 rubygems