ant-design/components/grid/RowContext.tsx
2018-12-07 20:02:01 +08:00

10 lines
213 B
TypeScript

import createContext, { Context } from 'create-react-context';
export interface RowContextState {
gutter?: number;
}
const RowContext: Context<RowContextState> = createContext({});
export default RowContext;