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