mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-11-11 19:03:43 +08:00
22 lines
562 B
JavaScript
22 lines
562 B
JavaScript
import React from 'react';
|
|
import { Card } from 'semantic-ui-react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import RedemptionsTable from '../../components/RedemptionsTable';
|
|
|
|
const Redemption = () => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div className='dashboard-container'>
|
|
<Card fluid className='chart-card'>
|
|
<Card.Content>
|
|
<Card.Header className='header'>{t('redemption.title')}</Card.Header>
|
|
<RedemptionsTable />
|
|
</Card.Content>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Redemption;
|