@premieroctet/next-admin
Version:
Next-Admin provides a customizable and turnkey admin dashboard for applications built with Next.js and powered by the Prisma ORM. It aims to simplify the development process by providing a turnkey admin system that can be easily integrated into your proje
13 lines • 533 B
TypeScript
import { PropsWithChildren, Dispatch } from "react";
import { RelationshipsRawData } from "../types";
export declare const useFormData: () => {
formData: any;
setFormData: Dispatch<any>;
relationshipsRawData?: RelationshipsRawData;
};
declare const FormDataProvider: ({ data, children, relationshipsRawData, }: PropsWithChildren<{
data: any;
relationshipsRawData?: RelationshipsRawData;
}>) => import("react/jsx-runtime").JSX.Element;
export default FormDataProvider;
//# sourceMappingURL=FormDataContext.d.ts.map