ant-design/components/grid/index.tsx
陈帅 0afdbe4d4a
fix: exporting common types (#28963)
* exporting common types

* no use importype

* fix test

* try fix test

* Update components/index.tsx

Co-authored-by: 偏右 <afc163@gmail.com>

* remove typo

* fix test

Co-authored-by: 偏右 <afc163@gmail.com>
2021-01-24 23:24:06 +08:00

12 lines
237 B
TypeScript

import Row from './row';
import Col from './col';
import useBreakpoint from './hooks/useBreakpoint';
export { RowProps } from './row';
export { ColProps, ColSize } from './col';
export { Row, Col };
export default { useBreakpoint };