@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
14 lines (13 loc) • 486 B
TypeScript
import { SelectChangeEvent } from '@mui/material/Select';
export interface DropDownProps {
selectedValue: string;
title: string;
menu: {
label: string;
value: string;
}[];
onChangeValue: (event: SelectChangeEvent) => void;
isMakeOfferModal?: boolean;
}
declare const DropDownContainer: ({ selectedValue, title, menu, onChangeValue, isMakeOfferModal, }: DropDownProps) => import("react/jsx-runtime").JSX.Element;
export default DropDownContainer;