import { User } from "@/types"; import { Link } from "@inertiajs/react"; import { PropsWithChildren } from "react"; import { Book, FileMinus } from "react-feather"; export default function BookmarkedPages({ user }: PropsWithChildren<{ user: User }>) { const thisUser = user; return (

Bookmarked Pages

Page Title
Subject Category
Page Title
Subject Category
Page Title
Subject Category
View all bookmarks
) }