"use client"; import { FormEvent } from "react"; import { useTranslation } from "react-i18next"; /* eslint-disable-next-line sort-imports */ import { useTheme, type Theme } from "./hooks/useTheme"; const ThemeSelect = (): JSX.Element => { const { theme, setTheme } = useTheme(); const { t } = useTranslation(["translation"]); const handleChange = (e: FormEvent) => { setTheme(e.currentTarget.value as Theme); }; return (
); }; ThemeSelect.displayName = "ThemeSelect"; export default ThemeSelect;