Skip to content

Commit

Permalink
chore(antd): improve typings (#2733)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepbystepnostress authored Jan 6, 2022
1 parent 000211b commit 994180d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/antd/src/select/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React from 'react'
import { connect, mapReadPretty, mapProps } from '@formily/react'
import { Select as AntdSelect } from 'antd'
import { SelectProps } from 'antd/lib/select'
import { PreviewText } from '../preview-text'
import { LoadingOutlined } from '@ant-design/icons'
export const Select = connect(
export const Select: React.FC<SelectProps<any>> = connect(
AntdSelect,
mapProps(
{
Expand Down

0 comments on commit 994180d

Please sign in to comment.