ant-design/components/grid/RowContext.tsx
2018-12-07 18:27:30 +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;