2018-04-21 01:47:30 +03:00

24 lines
372 B
JavaScript

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