c0c56e4c48
Co-authored-by: bwallacee <ben@vega.xyz>
13 lines
325 B
TypeScript
13 lines
325 B
TypeScript
import { useT } from '../../lib/use-t';
|
|
import { RewardsContainer } from '../../components/rewards-container';
|
|
|
|
export const Rewards = () => {
|
|
const t = useT();
|
|
return (
|
|
<div className="container mx-auto p-4">
|
|
<h1 className="px-4 pb-4 text-2xl">{t('Rewards')}</h1>
|
|
<RewardsContainer />
|
|
</div>
|
|
);
|
|
};
|