mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Default export * Correct imports for tests * Update react-virtualized-select-tests.tsx * Correct imports and cleaning
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
import * as React from "react";
|
|
import Select from "react-select";
|
|
import VirtualizedSelect from "react-virtualized-select";
|
|
|
|
<VirtualizedSelect
|
|
async={true}
|
|
maxHeight={0}
|
|
optionHeight={0}
|
|
optionRenderer={() => <div/>}
|
|
selectComponent={Select}
|
|
options={[]}
|
|
/>;
|