7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { Context } from 'react';
|
|
export interface RowContextState {
|
|
gutter?: [number, number];
|
|
}
|
|
declare const RowContext: Context<RowContextState>;
|
|
export default RowContext;
|