ant-design/components/grid/index.ts
lijianan 9aec72c395
chore: remove useless tsx support (#39890)
* 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
2022-12-29 18:33:13 +08:00

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 };