mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
9aec72c395
* chore: remove useless tsx support * add * add * style * fix lint * fix lint * fix lint * update locale entry * update locale entry * update locale entry * delete useless style
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
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 { Row, Col };
|
|
|
|
export default { useBreakpoint };
|