File size: 341 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import Col from './col';
import useInternalBreakpoint from './hooks/useBreakpoint';
import Row from './row';
// Do not export params
function useBreakpoint() {
return useInternalBreakpoint();
}
export type { ColProps, ColSize } from './col';
export type { RowProps } from './row';
export { Col, Row };
export default { useBreakpoint };
|