mango-v4-ui/hooks/useThemeWrapper.tsx

11 lines
186 B
TypeScript
Raw Normal View History

2023-07-21 11:50:06 -07:00
import { useTheme } from 'next-themes'
export default function useThemeWrapper() {
const theme = useTheme()
return {
...theme,
theme: theme.theme || theme.themes[0],
}
}