mirror of
https://github.com/langgenius/dify.git
synced 2026-06-26 06:41:10 +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)
|