mango-v4-ui/hooks/useThemeWrapper.tsx

11 lines
186 B
TypeScript

import { useTheme } from 'next-themes'
export default function useThemeWrapper() {
const theme = useTheme()
return {
...theme,
theme: theme.theme || theme.themes[0],
}
}