mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
import Col from './col';
|
|
import useInternalBreakpoint from './hooks/useBreakpoint';
|
|
import Row from './row';
|
|
|
|
// Do not export params
|
|
function useBreakpoint() {
|
|
return useInternalBreakpoint();
|
|
}
|
|
|
|
export { ColProps, ColSize } from './col';
|
|
export { RowProps } from './row';
|
|
export { Row, Col };
|
|
|
|
export default { useBreakpoint };
|