mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
- **BREAKING CHANGE**: Api url now /api/v1 \n **Fix**: Frontend build. \n **Fix**: errors about unknown styles BREAKING CHANGE:
11 lines
356 B
JavaScript
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 />}</>;
|
|
}
|