@conductionnl/nl-design-system
Version:
NL design system components created by Conduction
14 lines (13 loc) • 331 B
TypeScript
import * as React from "react";
interface ArrayInputProps {
data: Array<Record<"value", any>>;
id?: string;
label?: string;
}
/**
* This components handles multidimensional array input forms.
*
* @returns JSX of the generated form.
*/
export declare const ArrayInputComponent: React.FC<ArrayInputProps>;
export {};