import type { MainContentFocus } from "@hey/indexer"; import { useState } from "react"; import NotLoggedIn from "@/components/Shared/NotLoggedIn"; import PageLayout from "@/components/Shared/PageLayout"; import ContentFeedType from "@/components/Shared/Post/ContentFeedType"; import { useAccountStore } from "@/store/persisted/useAccountStore"; import BookmarksFeed from "./BookmarksFeed"; const Bookmarks = () => { const { currentAccount } = useAccountStore(); const [focus, setFocus] = useState(); if (!currentAccount) { return ; } return ( ); }; export default Bookmarks;