"use client"; import { useTheme } from "@wrksz/themes/client"; import { useSyncExternalStore } from "react"; export const ThemeChanger = () => { const { theme, setTheme } = useTheme(); const mounted = useSyncExternalStore( () => () => undefined, () => true, () => false, ); if (!mounted) { return
Loading theme...
; } return (The current theme is: {theme}