rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
11 lines (10 loc) • 415 B
TypeScript
import React from 'react';
declare type State = {
components: React.FC<any>[];
};
declare type Actions = {
addComponents: (components: React.FC<any>[]) => void;
};
export declare const initialState: State;
export declare const useComponentStore: import("react-simple-hook-store").UseStoreReturn<State, Actions>, componentStore: import("react-simple-hook-store").IStore<State, Actions>;
export {};