feat: add theme manager

awesome!
This commit is contained in:
Sonny
2024-05-12 00:46:48 +02:00
committed by Sonny
parent b5cda75790
commit 3531038321
19 changed files with 271 additions and 203 deletions

View File

@@ -0,0 +1,5 @@
import { useContext } from 'react';
import { DarkThemeContext } from '~/contexts/dark_theme_context';
const useDarkTheme = () => useContext(DarkThemeContext);
export default useDarkTheme;