mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 19:18:07 +08:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import Row from './Row';
|
|
import Col from './Col';
|
|
import useBreakpoint from '../_util/hooks/useBreakpoint';
|
|
|
|
export type { RowProps } from './Row';
|
|
|
|
export type { ColProps, ColSize } from './Col';
|
|
|
|
export { Row, Col };
|
|
|
|
export default { useBreakpoint };
|