File size: 745 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'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<DocProps> = ({

  apiBaseUrl,

}) => {
  const { locale } = useContext(I18n)
  return (
    <article className='mx-1 px-4 sm:mx-12 pt-16 bg-white rounded-t-xl prose prose-xl'>

      {

        locale !== LanguagesSupported[1]

          ? <TemplateEn apiBaseUrl={apiBaseUrl} />

          : <TemplateZh apiBaseUrl={apiBaseUrl} />

      }

    </article>
  )
}

export default Doc