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

Function FormNote

src/components/FormNote/FormNote.react.js:14–18  ·  view source on GitHub ↗
({ show, children, color, ...other })

Source from the content-addressed store, hash-verified

12import styles from 'components/FormNote/FormNote.scss';
13
14const FormNote = ({ show, children, color, ...other }) => (
15 <SliderWrap {...other} direction={Directions.DOWN} expanded={show} block={true}>
16 <div className={[styles.note, styles[color]].join(' ')}>{children}</div>
17 </SliderWrap>
18);
19
20FormNote.propTypes = {
21 show: PropTypes.bool,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected