Browse Source
* 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
pull/43176/head
Zack Chang
1 year ago
committed by
GitHub
3 changed files with 16 additions and 9 deletions
@ -0,0 +1,10 @@ |
|||
import React from 'react'; |
|||
|
|||
export interface DescriptionsContextProps { |
|||
labelStyle?: React.CSSProperties; |
|||
contentStyle?: React.CSSProperties; |
|||
} |
|||
|
|||
const DescriptionsContext = React.createContext<DescriptionsContextProps>({}); |
|||
|
|||
export default DescriptionsContext; |
Loading…
Reference in new issue