ant-design/components/grid/RowContext.tsx

10 lines
214 B
TypeScript
Raw Normal View History

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