vega-frontend-monorepo/apps/trading/client-pages/fees/fees.tsx

12 lines
290 B
TypeScript
Raw Normal View History

2023-10-25 21:59:30 +00:00
import { t } from '@vegaprotocol/i18n';
import { FeesContainer } from '../../components/fees-container';
export const Fees = () => {
return (
<div className="container p-4 mx-auto">
<h1 className="px-4 pb-4 text-2xl">{t('Fees')}</h1>
<FeesContainer />
</div>
);
};