import { User } from "@/types"; import { PropsWithChildren } from "react"; import { Activity } from "react-feather"; export default function RecentLogs({ user }: PropsWithChildren<{ user: User }>) { const thisUser = user; return (

Recent Logs

Month / Day / Year hh:mm:ss
Bookmarked Page Title
Month / Day / Year hh:mm:ss
Viewed Page Title
Month / Day / Year hh:mm:ss
Logged in
View Activity Logs
); }