tinacms
Version:
[](https://github.com/tinacms/tinacms/blob/main/LICENSE) [](https://www.npmjs.com/package/tinacms) [![Bui
17 lines (16 loc) • 621 B
TypeScript
import type { Form } from '../../forms';
import * as React from 'react';
export interface FormsViewProps {
loadingPlaceholder?: React.FC;
}
export declare const FormsView: ({ loadingPlaceholder }?: FormsViewProps) => React.JSX.Element;
export interface FormHeaderProps {
activeForm: {
activeFieldName?: string;
tinaForm: Form;
};
}
export declare const FormHeader: ({ activeForm }: FormHeaderProps) => React.JSX.Element;
export declare const FormBreadcrumbs: ({ rootBreadcrumbName, ...props }: {
rootBreadcrumbName?: string;
} & React.HTMLAttributes<HTMLDivElement>) => React.JSX.Element;