AniX/frontend/app/bookmarks/page.js
Kentai Radiquum d97ad7dbfe
feat(deploy): allow deploying on deta.space
- **BREAKING CHANGE**: Api url now /api/v1 \n **Fix**: Frontend build. \n **Fix**: errors about unknown styles

BREAKING CHANGE:
2024-05-13 22:20:08 +05:00

11 lines
356 B
JavaScript

"use client";
import { useUserStore } from "@/app/store/user-store";
import { LogInNeeded } from "@/app/components/LogInNeeded/LogInNeeded";
import BookmarksPage from "../components/Pages/BookmarksPage";
export default function Bookmarks() {
const userStore = useUserStore();
return <>{!userStore.isAuth ? <LogInNeeded /> : <BookmarksPage />}</>;
}