// import React from 'react' import { useTranslation } from 'react-i18next'; import StyledRadio from "../../../common/component/styled/Radio"; // type Props = {} const Index = () => { const { t, i18n } = useTranslation("setting"); const handleGuestToggle = (v: "zh" | "en") => { i18n.changeLanguage(v); }; return (
{t("overview.lang.title")}
{t("overview.lang.desc")}