import "tailwindcss/tailwind.css"; import { useEffect, useState } from 'react'; import { useTheme } from 'next-themes'; const ThemeChanger = () => { const [mounted, setMounted] = useState(false) const { theme, setTheme } = useTheme() // When mounted on client, now we can show the UI useEffect(() => setMounted(true), []) if (!mounted) return null return (
The current theme is: {theme}
) } export default ThemeChanger;