mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-11 08:54:24 +00:00
The qrCodeStore has been relocated from the app/stores directory to app/lib/stores to maintain a more consistent and organized project structure. This change improves maintainability by centralizing store-related files in a dedicated directory.
4 lines
90 B
TypeScript
4 lines
90 B
TypeScript
import { atom } from 'nanostores';
|
|
|
|
export const expoUrlAtom = atom<string | null>(null);
|