import BackButton from "@/components/Shared/BackButton";
import NotLoggedIn from "@/components/Shared/NotLoggedIn";
import PageLayout from "@/components/Shared/PageLayout";
import { Card, CardHeader } from "@/components/Shared/UI";
import { useAccountStore } from "@/store/persisted/useAccountStore";
import List from "./List";
const RewardsSettings = () => {
const { currentAccount } = useAccountStore();
if (!currentAccount) {
return ;
}
return (
} title="Rewards" />
);
};
export default RewardsSettings;