Sha256: 65fc91b74041cea1b9f3613ce0e87e97fa8ac9095c301df17830a2a840bc6e03
Contents?: true
Size: 372 Bytes
Versions: 35
Compression:
Stored size: 372 Bytes
Contents
import React from 'react' import PropTypes from 'prop-types' const propTypes = { className: PropTypes.string, id: PropTypes.string, } class Timestamp extends React.Component { render() { return ( <div className="pb_timestamp"> <span>{'TIMESTAMP CONTENT'}</span> </div> ) } } Timestamp.propTypes = propTypes export default Timestamp
Version data entries
35 entries across 35 versions & 1 rubygems