working on resetting everything up with updated versions

This commit is contained in:
2023-01-09 22:23:53 -05:00
parent cf6e40db56
commit d8ca168844
20 changed files with 22854 additions and 1926 deletions

View File

@@ -0,0 +1,19 @@
import { atom } from 'jotai'
import { atomWithReset } from 'jotai/utils'
export const serverConfigAtom = atom({})
// Size and menu handling
export const menuOpenedAtom = atom(false)
// Pages state
export const activePageAtom = atom({})
// Filters for all pages to pass back and forth
export const locationFilterAtom = atom({})
export const roomFilterAtom = atom({})
// Notification history and notification stack
export const notificationHistory = atom([])
export const notifications = atomWithReset([])