mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
5 lines
259 B
TypeScript
5 lines
259 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
|
|
// Atom to track whether the announcement banner has been dismissed
|
|
// Persists to localStorage automatically
|
|
export const announcementDismissedAtom = atomWithStorage("surfsense_announcement_dismissed", false);
|