ant-design/components/grid/index.tsx

15 lines
331 B
TypeScript
Raw Normal View History

2015-10-27 23:52:17 +08:00
import Col from './col';
import useInternalBreakpoint from './hooks/useBreakpoint';
2022-06-22 14:57:09 +08:00
import Row from './row';
// Do not export params
function useBreakpoint() {
return useInternalBreakpoint();
}
2015-10-27 23:52:17 +08:00
export { ColProps, ColSize } from './col';
2022-06-22 14:57:09 +08:00
export { RowProps } from './row';
2018-12-07 16:17:45 +08:00
export { Row, Col };
export default { useBreakpoint };