"use client"; // next theme import { useTheme } from "next-themes"; // mobx react lite import { observer } from "mobx-react-lite"; export const NavbarTheme = observer(() => { const { setTheme, theme } = useTheme(); const handleTheme = () => { setTheme(theme === "light" ? "dark" : "light"); }; return ( ); });