ant-design/components/grid/RowContext.tsx
2019-04-16 12:18:39 +08:00

10 lines
225 B
TypeScript

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