'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' import { randomString } from '@/utils' type ApiServerProps = { apiBaseUrl: string } const ApiServer: FC = ({ apiBaseUrl, }) => { const { t } = useTranslation() return (
{t('appApi.apiServer')}
{apiBaseUrl}
{t('appApi.ok')}
) } export default ApiServer