MCPcopy Create free account
hub / github.com/parse-community/parse-dashboard / Fieldset

Function Fieldset

src/components/Fieldset/Fieldset.react.js:12–18  ·  view source on GitHub ↗
({ legend, description, children })

Source from the content-addressed store, hash-verified

10import styles from 'components/Fieldset/Fieldset.scss';
11
12const 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
20export default Fieldset;
21

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected