import { NotificationFeedType } from "@hey/data/enums"; import { useState } from "react"; import NotLoggedIn from "@/components/Shared/NotLoggedIn"; import PageLayout from "@/components/Shared/PageLayout"; import { useAccountStore } from "@/store/persisted/useAccountStore"; import FeedType from "./FeedType"; import List from "./List"; const Notification = () => { const { currentAccount } = useAccountStore(); const [feedType, setFeedType] = useState( NotificationFeedType.All ); if (!currentAccount) { return ; } return ( ); }; export default Notification;