import React from 'react'; import ApiKeyTable from '@/components/support/apikey/Table'; import { useTranslation } from 'next-i18next'; import { Box } from '@chakra-ui/react'; import AccountContainer, { TabEnum } from '@/pageComponents/account/AccountContainer'; import { serviceSideProps } from '@/web/common/i18n/utils'; const ApiKey = () => { const { t } = useTranslation(); return ( ); }; export async function getServerSideProps(content: any) { return { props: { ...(await serviceSideProps(content, ['account_apikey', 'account', 'publish'])) } }; } export default ApiKey;