Sha256: ef805573deaa400d2a433e438530b833aca043c04c88a0655b118ee4b68f7690
Contents?: true
Size: 374 Bytes
Versions: 11
Compression:
Stored size: 374 Bytes
Contents
import React from 'react' import PropTypes from "prop-types" const propTypes = { className: PropTypes.string, id: PropTypes.string } class LabelValue extends React.Component { render() { return ( <div className="pb_label_value"> <span>LABEL VALUE CONTENT</span> </div> ) } } LabelValue.propTypes = propTypes export default LabelValue
Version data entries
11 entries across 11 versions & 1 rubygems