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