export type DropdownType = {
  name: string;
  gender: string;
};
export type DropdownDataType = Partial<{
  id: number;
  uuid: string;
  label: string;
}>;
