RowContext.d.ts 173 B

123456
  1. export interface RowContextState {
  2. gutter?: [number, number];
  3. wrap?: boolean;
  4. }
  5. declare const RowContext: React.Context<RowContextState>;
  6. export default RowContext;