index.js 496 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import RedemptionsTable from '../../components/RedemptionsTable';
  3. import { Layout } from '@douyinfe/semi-ui';
  4. import { useTranslation } from 'react-i18next';
  5. const Redemption = () => {
  6. const { t } = useTranslation();
  7. return (
  8. <>
  9. <Layout>
  10. <Layout.Header>
  11. <h3>{t('管理兑换码')}</h3>
  12. </Layout.Header>
  13. <Layout.Content>
  14. <RedemptionsTable />
  15. </Layout.Content>
  16. </Layout>
  17. </>
  18. );
  19. }
  20. export default Redemption;