UNPKG

@open-tender/store

Version:

A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API

14 lines (13 loc) 476 B
import { MenuItem } from '@open-tender/types'; import { MenuOtherProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const MenuOther: ({ title, subtitle, showSubtitle, path, item, children, navigate }: { title: string; subtitle?: string | null; showSubtitle?: boolean; path: string; item: MenuItem; navigate: (route: string) => void; children: (props: MenuOtherProps) => ReactNode; }) => ReactNode; export default MenuOther;