import React from 'react' import styles from './LabelCard.module.css' const LabelCard = ({ id, name, value, title, image, onChange, readOnly }) => { return (
) } export default LabelCard