UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

14 lines (13 loc) 514 B
import { FireCMSProps, User } from "../types"; /** * If you are using independent components of the CMS * you need to wrap them with this main component, so the internal hooks work. * * This is the main component of FireCMS. It acts as the provider of all the * internal contexts and hooks. * * You only need to use this component if you are building a custom app. * * @group Core */ export declare function FireCMS<USER extends User>(props: FireCMSProps<USER>): import("react/jsx-runtime").JSX.Element;