kolenkainc-honohub-react
Version:
React admin panel for honohub
7 lines (6 loc) • 337 B
TypeScript
import { type HTMLAttributes } from "react";
import type { CollectionType } from "../../types";
export type CollectionSidebar = {
options: Pick<CollectionType, "slug" | "label">[];
} & HTMLAttributes<HTMLDivElement>;
export declare function CollectionSidebar({ options }: CollectionSidebar): import("react/jsx-runtime").JSX.Element;