2020-05-08 14:50:42 +08:00

10 lines
208 B
TypeScript

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