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