@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
22 lines (20 loc) • 753 B
TypeScript
import React from "react";
/**
* Default entry view for the CMS. This component renders navigation cards
* for each collection defined in the navigation.
* @group Components
*/
export declare function DefaultHomePage({ additionalActions, additionalChildrenStart, additionalChildrenEnd }: {
/**
* Additional actions to be rendered in the home page, close to the search bar.
*/
additionalActions?: React.ReactNode;
/**
* Additional children to be rendered in the beginning of the home page.
*/
additionalChildrenStart?: React.ReactNode;
/**
* Additional children to be rendered at the end of the home page.
*/
additionalChildrenEnd?: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;