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.
13 lines (12 loc) • 417 B
TypeScript
export declare const useGrouping: () => {
groupings: {
groups: import("../store/store").GroupType[];
activeGroup: string;
};
addGroup: (name: string) => void;
setActiveGroup: (id: string) => void;
deleteGroup: () => void;
renameGroup: (name: string) => void;
ActiveGroupName: string | null;
swapGroups: (index: number, newPositionIndex: number) => void;
};