mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-29 18:50:00 +08:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export const DarkContext = React.createContext(false);
|
||
|
|
||
|
export default function useDark() {
|
||
|
return React.useContext(DarkContext);
|
||
|
}
|