diff options
Diffstat (limited to 'client/src/components/LabelCard')
-rw-r--r-- | client/src/components/LabelCard/LabelCard.jsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/components/LabelCard/LabelCard.jsx b/client/src/components/LabelCard/LabelCard.jsx index be02f01..42ba7bf 100644 --- a/client/src/components/LabelCard/LabelCard.jsx +++ b/client/src/components/LabelCard/LabelCard.jsx @@ -1,7 +1,7 @@ import React from 'react' import styles from './LabelCard.module.css' -const LabelCard = ({ id, name, value, title, image }) => { +const LabelCard = ({ id, name, value, title, image, onChange }) => { return ( <div className={styles.labelcard}> <label htmlFor={id} className={styles.card}> @@ -15,6 +15,7 @@ const LabelCard = ({ id, name, value, title, image }) => { name={name} value={value} required + onChange={onChange} /> </div> ) |