mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +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 7664b01645
.
* 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;
|