ant-design/components/grid/RowContext.tsx

10 lines
225 B
TypeScript
Raw Normal View History

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