24 lines
711 B
TypeScript
24 lines
711 B
TypeScript
import { ElementType } from 'react'
|
|
import importOverleafModules from '../../../../../macros/import-overleaf-module.macro'
|
|
import { RailPanelHeader } from '../rail'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
const integrationPanelComponents = importOverleafModules(
|
|
'integrationPanelComponents'
|
|
) as { import: { default: ElementType }; path: string }[]
|
|
|
|
export default function IntegrationsPanel() {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="integrations-panel">
|
|
<RailPanelHeader title={t('integrations')} />
|
|
{integrationPanelComponents.map(
|
|
({ import: { default: Component }, path }) => (
|
|
<Component key={path} />
|
|
)
|
|
)}
|
|
</div>
|
|
)
|
|
}
|