UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

11 lines (10 loc) 375 B
import { FunctionComponent } from "react"; import FormFeedback from "../form/form-feedback"; import FormLabel from "../form/form-label"; import { FieldProps } from "./field"; interface FieldInterface extends FunctionComponent<FieldProps> { Label: typeof FormLabel; Feedback: typeof FormFeedback; } declare const Field: FieldInterface; export default Field;