2024-02-13 16:17:00 +00:00
|
|
|
import { TinyScroll } from '@vegaprotocol/ui-toolkit';
|
2023-12-06 13:31:40 +00:00
|
|
|
import { ErrorBoundary } from '../../components/error-boundary';
|
2023-10-25 21:59:30 +00:00
|
|
|
import { FeesContainer } from '../../components/fees-container';
|
2023-11-16 03:10:39 +00:00
|
|
|
import { useT } from '../../lib/use-t';
|
2024-02-13 16:17:00 +00:00
|
|
|
import { usePageTitle } from '../../lib/hooks/use-page-title';
|
2023-10-25 21:59:30 +00:00
|
|
|
|
|
|
|
export const Fees = () => {
|
2023-11-16 03:10:39 +00:00
|
|
|
const t = useT();
|
2023-11-27 08:18:59 +00:00
|
|
|
const title = t('Fees');
|
2024-02-13 16:17:00 +00:00
|
|
|
usePageTitle(title);
|
2023-12-06 13:31:40 +00:00
|
|
|
|
2023-10-25 21:59:30 +00:00
|
|
|
return (
|
2023-12-06 13:31:40 +00:00
|
|
|
<ErrorBoundary feature="fees">
|
2024-02-13 16:17:00 +00:00
|
|
|
<TinyScroll className="p-4 max-h-full overflow-auto">
|
|
|
|
<h1 className="md:px-4 pb-4 text-2xl">{title}</h1>
|
2023-12-06 13:31:40 +00:00
|
|
|
<FeesContainer />
|
2024-02-13 16:17:00 +00:00
|
|
|
</TinyScroll>
|
2023-12-06 13:31:40 +00:00
|
|
|
</ErrorBoundary>
|
2023-10-25 21:59:30 +00:00
|
|
|
);
|
|
|
|
};
|