5 lines
163 B
TypeScript
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);
|