9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
|
import React from 'react';
|
||
|
interface DropDownProps {
|
||
|
options: string[];
|
||
|
label?: string;
|
||
|
onChange: (value: string) => void;
|
||
|
}
|
||
|
declare const DropDown: React.FC<DropDownProps>;
|
||
|
export default DropDown;
|