MCPcopy
hub / github.com/rafgraph/spa-github-pages / InputProps

Interface InputProps

src/components/SitemapLinkGenerator.tsx:7–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import { P, Code } from './UI';
6
7interface InputProps {
8 style?: CSS.Properties;
9 type: string;
10 min?: string;
11 step?: string;
12 onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
13 value: string;
14}
15
16const Input: React.VFC<InputProps> = ({ style, ...rest }) => (
17 <Interactive

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected