RowContext.d.ts 200 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import { Context } from 'react'; export interface RowContextState { gutter?: [number, number]; wrap?: boolean; } declare const RowContext: Context<RowContextState>; export default RowContext;