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 76c8b4e commit 35ba339Copy full SHA for 35ba339
src/index.ts
@@ -1,12 +1,11 @@
1
-import { default as Wizard } from './wizard';
2
-import { default as useWizard } from './useWizard';
3
-
4
// Type re-export workaround, to stay compatible with TS 3.7 and lower
5
import {
+ Handler as _Handler,
6
WizardProps as _WizardProps,
7
WizardValues as _WizardValues,
8
- Handler as _Handler,
9
} from './types';
+import { default as useWizard } from './useWizard';
+import { default as Wizard } from './wizard';
10
11
export type WizardProps = _WizardProps;
12
export type WizardValues = _WizardValues;
0 commit comments