mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
d6cb50b4fd
* Revert "refactor: Remove duplicated less loop (#20590)"
This reverts commit af2d803829
.
* Update package.json
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
import { createContext, Context } from 'react';
|
|
|
|
export interface RowContextState {
|
|
gutter?: [number, number];
|
|
}
|
|
|
|
const RowContext: Context<RowContextState> = createContext({});
|
|
|
|
export default RowContext;
|