We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68ac00 commit 3b0c437Copy full SHA for 3b0c437
src/index.ts
@@ -27,6 +27,8 @@ export type {
27
28
// Forward all available exports from the original `react-select` package
29
export * from "react-select";
30
-export * from "react-select/async";
31
-export * from "react-select/async-creatable";
32
-export * from "react-select/creatable";
+export { useAsync } from "react-select/async";
+export { useCreatable } from "react-select/creatable";
+export type { AsyncProps } from "react-select/async";
33
+export type { CreatableProps } from "react-select/creatable";
34
+export type { AsyncCreatableProps } from "react-select/async-creatable";
0 commit comments