mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-22 22:48:29 +08:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
|
import createContext, { Context } from 'create-react-context';
|
||
|
|
||
|
export interface RowContextState {
|
||
|
gutter?: number;
|
||
|
}
|
||
|
|
||
|
const RowContext: Context<RowContextState> = createContext({});
|
||
|
|
||
|
export default RowContext;
|