ant-design/components/descriptions/constant.ts

13 lines
215 B
TypeScript
Raw Normal View History

import type { Breakpoint } from '../_util/responsiveObserver';
const DEFAULT_COLUMN_MAP: Record<Breakpoint, number> = {
xxl: 3,
xl: 3,
lg: 3,
md: 3,
sm: 2,
xs: 1,
};
export default DEFAULT_COLUMN_MAP;