mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import { useContext } from 'react';
|
|
|
|
import DisabledContext from '../DisabledContext';
|
|
import SizeContext from '../SizeContext';
|
|
|
|
function useConfig() {
|
|
const componentDisabled = useContext(DisabledContext);
|
|
const componentSize = useContext(SizeContext);
|
|
|
|
return {
|
|
componentDisabled,
|
|
componentSize,
|
|
};
|
|
}
|
|
|
|
export default useConfig;
|