mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
13 lines
215 B
TypeScript
13 lines
215 B
TypeScript
|
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;
|