mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
6a5e7ded43
* refactor: remove IE compatible logic * fix: fix * fix: fix * fix: fix
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export interface RowContextState {
|
|
gutter?: [number, number];
|
|
wrap?: boolean;
|
|
}
|
|
|
|
const RowContext = createContext<RowContextState>({});
|
|
|
|
export default RowContext;
|