Skip to content

Commit 9d682cd

Browse files
committed
fix: export all components
1 parent 89c304e commit 9d682cd

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

src/components/FormField/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default, IFormFieldProps } from './FormField';
1+
export { default as FormField, IFormFieldProps } from './FormField';

src/components/index.ts

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1-
export * from './Button';
2-
export * from './Layout';
31
export * from './Avatar';
2+
export * from './Badge';
3+
export * from './Button';
4+
export * from './Checkbox';
45
export * from './Dialog';
5-
export * from './TextInput';
6+
export * from './Divider';
7+
export * from './FormField';
8+
export * from './Layout';
9+
export * from './Loading';
610
export * from './Picker';
711
export * from './SelectList';
12+
export * from './Switch';
13+
export * from './TextArea';
14+
export * from './TextInput';
15+
export * from './Toast';
816
export * from './Typography';
9-
export * from './Divider';

0 commit comments

Comments
 (0)