Fix documentation on options property in Select

Summary: Just updating the apparently copy-pasted comment about the `options` prop.

Reviewed By: passy

Differential Revision: D17567256

fbshipit-source-id: ed4ff93ad42ef8bdcadb5371fe11ae90dba47ca3
This commit is contained in:
Assaf Gelber
2019-09-25 01:40:12 -07:00
committed by Facebook Github Bot
parent 9af2030b43
commit 34d96fa262

View File

@@ -30,7 +30,7 @@ const SelectMenu = styled('select')((props: {grow?: boolean}) => ({
export default class Select extends Component<{
/** Additional className added to the element */
className?: string;
/** Additional className added to the element */
/** The list of options to display */
options: {
[key: string]: string;
};