mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 03:28:42 +08:00
16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
import Row from './Row';
|
|
import Col from './Col';
|
|
import useInternalBreakpoint from '../_util/hooks/useBreakpoint';
|
|
|
|
// Do not export params
|
|
function useBreakpoint() {
|
|
return useInternalBreakpoint();
|
|
}
|
|
export type { RowProps } from './Row';
|
|
|
|
export type { ColProps, ColSize } from './Col';
|
|
|
|
export { Row, Col };
|
|
|
|
export default { useBreakpoint };
|