UNPKG

formkit-react

Version:

FormKit is a React library for building forms with ease.

11 lines (10 loc) 312 B
import React from 'react'; interface ControllerProps<T = any> { name: string; render: (props: { value: T; onChange: (value: T) => void; }) => React.ReactElement; } export default function FormKitController<T = any>({ name, render }: ControllerProps<T>): React.JSX.Element; export {};