import React from 'react'; import PropTypes from 'prop-types'; const styles = { label: { padding: '0 6px', }, }; function Label({ id, content }) { return ( ); } Label.propTypes = { content: PropTypes.string.isRequired, id: PropTypes.string.isRequired, }; export default Label;