12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
import { useContext } from 'react';
|
|
import { ThemeModeContext } from './themeContext';
|
|
import type { ThemeContextValue } from './themeContext';
|
|
|
|
export const useThemeMode = (): ThemeContextValue => {
|
|
const context = useContext(ThemeModeContext);
|
|
if (!context) {
|
|
throw new Error('useThemeMode 必须在 ThemeProvider 内使用');
|
|
}
|
|
return context;
|
|
};
|