ant-design/components/grid/RowContext.ts
lijianan 6a5e7ded43
refactor: remove Space & Grid IE compatible logic (#44620)
* refactor: remove IE compatible logic

* fix: fix

* fix: fix

* fix: fix
2023-09-05 10:17:56 +08:00

11 lines
208 B
TypeScript

import { createContext } from 'react';
export interface RowContextState {
gutter?: [number, number];
wrap?: boolean;
}
const RowContext = createContext<RowContextState>({});
export default RowContext;