mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
875a221c62
* refactor: solve circular reference of Description * refactor: solve circular reference of Table * Revert "refactor: solve circular reference of Table" This reverts commit 7664b016458bb031d8c51defd2fd740c2a1de3d5. * chore: add export
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import React from 'react';
|
|
|
|
export interface DescriptionsContextProps {
|
|
labelStyle?: React.CSSProperties;
|
|
contentStyle?: React.CSSProperties;
|
|
}
|
|
|
|
const DescriptionsContext = React.createContext<DescriptionsContextProps>({});
|
|
|
|
export default DescriptionsContext;
|