UNPKG

tinacms

Version:

[![GitHub license](https://img.shields.io/github/license/tinacms/tinacms?color=blue)](https://github.com/tinacms/tinacms/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/tinacms.svg?style=flat)](https://www.npmjs.com/package/tinacms) [![Bui

17 lines (16 loc) 621 B
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;