import React from 'react' import { Spacer } from 'components' import VirtualAnchor from 'lib/components/anchor' import { useConfigs } from '../../config-context' import Contributors from './contributors' import AttributesTitle from './attributes-title' import AttributesTable from './attributes-table' export interface AttributesProps { edit: string } const Attributes: React.FC> = React.memo( ({ edit, children }) => { const { isChinese } = useConfigs() const path = edit.replace('/pages', 'pages') return ( <>

APIs {isChinese && ' / 接口文档'}

{children}

{isChinese ? '文档贡献者' : 'Contributors'}

) }, ) type AttributesComponent

= React.FC

& { Title: typeof AttributesTitle Table: typeof AttributesTable } export default Attributes as AttributesComponent