mirror of
https://github.com/langgenius/dify.git
synced 2026-06-24 21:11:16 +08:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
'use client'
|
|
|
|
import { atom } from 'jotai'
|
|
|
|
export const deploymentsRouteActiveAtom = atom(false)
|
|
export const deploymentRouteAppInstanceIdAtom = atom<string | undefined>(undefined)
|