UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

10 lines (9 loc) 343 B
export type SideBarProps = { onClick: (item: any) => void; items: Record<string, any>[]; activeItem: string; storageKey?: string; hideToggle?: boolean; }; declare function Sidebar({ onClick, items, activeItem, storageKey, hideToggle }: SideBarProps): import("react/jsx-runtime").JSX.Element | null; export default Sidebar;