Skip to content

Commit

Permalink
fix: add default export(fix #9) (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouxinyong authored Jan 7, 2022
1 parent bd7f8d6 commit 480c1ea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/components/src/array-base/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,3 +419,5 @@ export const ArrayBase = composeExport(ArrayBaseInner, {
useKey: useKey,
useRecord: useRecord,
})

export default ArrayBase
2 changes: 2 additions & 0 deletions packages/components/src/array-tabs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,5 @@ export const ArrayTabs = observer(
},
})
)

export default ArrayTabs
2 changes: 2 additions & 0 deletions packages/components/src/cascader/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ export const Cascader = connect(
),
mapReadPretty(PreviewText.Cascader)
)

export default Cascader
2 changes: 2 additions & 0 deletions packages/components/src/select/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ export const Select = connect(
),
mapReadPretty(PreviewText.Select)
)

export default Select

0 comments on commit 480c1ea

Please sign in to comment.