@open-tender/ui
Version:
A component library for use with the Open Tender web app
15 lines (14 loc) • 537 B
TypeScript
import { NavigationPageType } from '@open-tender/types';
import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface CategoryNavOtherProps {
config: ScreenConfig;
handlers: Handlers;
title: string;
imageUrl: string | null;
apiUrl: string;
displayImage?: boolean;
navigationType?: NavigationPageType;
}
declare const CategoryNavOther: ({ config, handlers, title, imageUrl, apiUrl, displayImage }: CategoryNavOtherProps) => React.JSX.Element;
export default CategoryNavOther;