UNPKG

@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.

14 lines (10 loc) 336 B
/** */ import * as React from 'react'; import { TinaCMS } from '../tina-cms'; export interface TinaCMSProviderProps { cms: TinaCMS; children?: React.ReactNode; } export declare const INVALID_CMS_ERROR = "The `cms` prop must be an instance of `TinaCMS`."; export declare const TinaCMSProvider: React.FC<TinaCMSProviderProps>;