v3: follows, notifications, invite-only registration, unread markers

This commit is contained in:
khannurien
2026-03-21 18:42:47 +00:00
parent 7c098e7c4c
commit 608c6bc6a8
55 changed files with 4743 additions and 884 deletions

4
src/hooks/useFollows.ts Normal file
View File

@@ -0,0 +1,4 @@
import { useContext } from "react";
import { FollowContext } from "../contexts/FollowContext.ts";
export const useFollows = () => useContext(FollowContext);