// import { useEffect } from "react"; import { useTranslation } from "react-i18next"; import { useNavigate } from "react-router-dom"; import Button from "@/components/styled/Button"; // type Props = {}; const LicenseUpgradeTip = () => { const { t } = useTranslation("chat"); const navigateTo = useNavigate(); const handleRedirect = () => { navigateTo("/setting/license"); }; return (