// next theme import { useTheme } from "next-themes"; // mobx react lite import { observer } from "mobx-react-lite"; import { useEffect, useState } from "react"; export const NavbarTheme = observer(() => { const [appTheme, setAppTheme] = useState("light"); const { setTheme, theme } = useTheme(); const handleTheme = () => { setTheme(theme === "light" ? "dark" : "light"); }; useEffect(() => { if (!theme) return; setAppTheme(theme); }, [theme]); return ( ); });