* adapt not input type * adapt not input type * file i18n * publish i18n * translate * i18n
12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
import React from 'react';
|
|
import { useTranslation } from 'next-i18next';
|
|
import ApiKeyTable from '@/components/support/apikey/Table';
|
|
import { useI18n } from '@/web/context/I18n';
|
|
|
|
const ApiKey = () => {
|
|
const { publishT } = useI18n();
|
|
return <ApiKeyTable tips={publishT('key tips')}></ApiKeyTable>;
|
|
};
|
|
|
|
export default ApiKey;
|