ant-design/components/grid/RowContext.tsx

10 lines
213 B
TypeScript
Raw Normal View History

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