@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
13 lines (12 loc) • 505 B
TypeScript
import { NavigationPageType } from '@open-tender/types';
import { CategoryNavOtherProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const CategoryNavOther: ({ title, path, displayImage, navigationType, navigate, children }: {
title: string;
path: string;
displayImage?: boolean;
navigationType?: NavigationPageType;
navigate: (route: string) => void;
children: (props: CategoryNavOtherProps) => ReactNode;
}) => ReactNode;
export default CategoryNavOther;