import { useEffect, useState } from "react"; import { useI18n } from "../i18n"; const CAS_URL = "https://www.cas.cn/"; export function WebIframePage() { const { t } = useI18n(); const [loaded, setLoaded] = useState(false); useEffect(() => { setLoaded(false); }, []); return (