ant-design/components/grid/index.tsx

17 lines
333 B
TypeScript
Raw Normal View History

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