@tinacms/toolkit
Version:
Tina is a lightweight but powerful toolkit for creating a site editing ui with javascript components. Tina surfaces superpowers for dev’s to create, expand on and customize a simple yet intuitive ui for editing content.
25 lines (21 loc) • 635 B
TypeScript
/**
*/
import * as React from 'react';
import { Form } from '../../forms';
export declare const FormsView: ({ children, }: {
children?: React.ReactChild | React.ReactChild[];
}) => JSX.Element;
export interface MultiformFormHeaderProps {
activeForm: {
activeFieldName?: string;
tinaForm: Form;
};
}
export declare const MultiformFormHeader: ({ activeForm, }: MultiformFormHeaderProps) => JSX.Element;
export interface FormHeaderProps {
activeForm: {
activeFieldName?: string;
tinaForm: Form;
};
}
export declare const FormHeader: ({ activeForm }: FormHeaderProps) => JSX.Element;