mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
0afdbe4d4a
* 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>
12 lines
237 B
TypeScript
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 };
|