import React from "react"; const LangSwitch = () => { const { hostname } = window.location if (hostname === 'localhost') return null; const en = window.location.href.replace(hostname, 'docs.nocobase.com') const cn = window.location.href.replace(hostname, 'docs-cn.nocobase.com') return EN | 中文 } export default LangSwitch;