'use client' import type { FC } from 'react' import { useContext } from 'use-context-selector' import TemplateEn from './template/template.en.mdx' import TemplateZh from './template/template.zh.mdx' import I18n from '@/context/i18n' import { LanguagesSupported } from '@/i18n/language' type DocProps = { apiBaseUrl: string } const Doc: FC = ({ apiBaseUrl, }) => { const { locale } = useContext(I18n) return (
{ locale !== LanguagesSupported[1] ? : }
) } export default Doc