UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

20 lines (18 loc) 532 B
import { NavigationEntry } from "../../types"; import React from "react"; /** * This is the component used in the home page to render a card for each * collection or view. * @group Components * @param view * @param path * @param collection * @param url * @param name * @param description * @param onClick */ export declare function NavigationCardBinding({ path, collection, view, url, name, description, onClick, type, shrink }: NavigationEntry & { onClick?: () => void; shrink?: boolean; }): React.JSX.Element;