MCPcopy Create free account
hub / github.com/MegEngine/MegFlow / Input

Function Input

flow-debugger/debugger-ui/src/component/input/Input.js:4–16  ·  view source on GitHub ↗
({ label, ...props })

Source from the content-addressed store, hash-verified

2import styles from "./Input.module.css";
3
4export const Input = ({ label, ...props }) => {
5 return (
6 <div className={styles.container}>
7 <label className={styles.inner}> {label} </label>
8 <input
9 type="text"
10 name={label}
11 className={styles.inner}
12 {...props}
13 />
14 </div>
15 );
16};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected