'use client' import type { FC } from 'react' import { useTranslation } from 'react-i18next' import CopyFeedback from '@/app/components/base/copy-feedback' import SecretKeyButton from '@/app/components/develop/secret-key/secret-key-button' type ApiServerProps = { apiBaseUrl: string appId?: string } const ApiServer: FC = ({ apiBaseUrl, appId, }) => { const { t } = useTranslation() return (
{t('apiServer', { ns: 'appApi' })}
{apiBaseUrl}
{t('ok', { ns: 'appApi' })}
) } export default ApiServer