UNPKG

use-neo4j

Version:

<div style="text-align:center"> <h1>React Hooks For Neo4j</h1>

27 lines (26 loc) 628 B
import React from 'react'; interface FormInputProps { classNames: Record<string, any>; id: string; label: string; type?: string; value: any; setter: Function; } export declare const FormInput: React.FC<FormInputProps>; interface FormSelectProps { classNames: Record<string, any>; id: string; label: string; options: any[]; value: any; setter: Function; } export declare const FormSelect: React.FC<FormSelectProps>; interface FormButtonProps { className: string; text: string; onClick: Function; } export declare const FormButton: React.FC<FormButtonProps>; export {};