ant-design/components/grid/RowContext.tsx

10 lines
208 B
TypeScript
Raw Normal View History

import { createContext, Context } from 'react';
export interface RowContextState {
gutter?: [number, number];
}
2018-12-07 16:17:45 +08:00
const RowContext: Context<RowContextState> = createContext({});
export default RowContext;