mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
07dec4cb00
* perf: Improve List render perfermance when grid is undefined https://github.com/ant-design/ant-design/pull/34106/files#diff-9e016ea02fe7dd0ea42d8774d29d45e1a10b8dd108de9c89d50c828c74b993b8R146-R151 * chore: do not export useBreakpoint param Co-authored-by: zombiej <smith3816@gmail.com>
17 lines
333 B
TypeScript
17 lines
333 B
TypeScript
import Row from './row';
|
|
import Col from './col';
|
|
import useInternalBreakpoint from './hooks/useBreakpoint';
|
|
|
|
// Do not export params
|
|
function useBreakpoint() {
|
|
return useInternalBreakpoint();
|
|
}
|
|
|
|
export { RowProps } from './row';
|
|
|
|
export { ColProps, ColSize } from './col';
|
|
|
|
export { Row, Col };
|
|
|
|
export default { useBreakpoint };
|