mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-08 15:22:39 +02:00
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
|
|
import { atom } from "jotai";
|
||
|
|
|
||
|
|
// Atom to control the connector dialog open state from anywhere in the app
|
||
|
|
export const connectorDialogOpenAtom = atom(false);
|