mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
a2edbc326f
* row vertical gutter * run test
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import createContext, { Context } from '@ant-design/create-react-context';
|
|
|
|
export interface RowContextState {
|
|
gutter?: [number, number];
|
|
}
|
|
|
|
const RowContext: Context<RowContextState> = createContext({});
|
|
|
|
export default RowContext;
|