MCPcopy Create free account
hub / github.com/EasyWebApp/WebCell / TestField

Class TestField

preview/Field.tsx:11–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9@formField
10@observer
11export class TestField extends HTMLElement implements WebField {
12 render() {
13 const { name } = this;
14
15 return (
16 <input
17 name={name}
18 onChange={({ currentTarget }) =>
19 (this.value = (currentTarget as HTMLInputElement).value)
20 }
21 />
22 );
23 }
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected