@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
14 lines (13 loc) • 485 B
TypeScript
export interface OptionsProps {
value: string;
label: string;
}
export interface MenuDetailsProps {
selectedValue: OptionsProps;
options: OptionsProps[];
isMobileScreen?: boolean;
handleApply: () => void;
handleMenuItemClick: (option: OptionsProps) => void;
}
declare const MenuDetails: ({ selectedValue, options, isMobileScreen, handleApply, handleMenuItemClick, }: MenuDetailsProps) => import("react/jsx-runtime").JSX.Element;
export default MenuDetails;