Files
cinny/src/app/state/activeRoom.ts

5 lines
163 B
TypeScript

import { atom } from 'jotai';
// Atom to track the currently active room ID for the titlebar
export const activeRoomIdAtom = atom<string | undefined>(undefined);