({ legend, description, children })
| 10 | import styles from 'components/Fieldset/Fieldset.scss'; |
| 11 | |
| 12 | const Fieldset = ({ legend, description, children }) => ( |
| 13 | <div className={styles.fieldset}> |
| 14 | <div className={styles.legend}>{legend}</div> |
| 15 | <div className={styles.description}>{description}</div> |
| 16 | <div className={styles.fields}>{children}</div> |
| 17 | </div> |
| 18 | ); |
| 19 | |
| 20 | export default Fieldset; |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected