Push notifications in a react app
I'm adding push notifications to my react app (TS and react-query on the frontend and MongoDB for the backend). Thinking of a pub-sub model (instead of webhooks/websockets) since the notifications need to go to all users of a workspace. Haven't ever built such a system before and was looking for recommendations on implementations.
