feat: initial conversational flow #37

Merged
talksik merged 39 commits from 33-conversational-flow-for-streams---story-mode into master 2026-03-19 23:29:41 +00:00
Showing only changes of commit b6a0466439 - Show all commits
-15
View File
@@ -1,15 +0,0 @@
import { create } from "zustand";
/**
* Minimal app-level store. Navigation state is now URL-driven via PathResolver.
* Stream/particle state will move to Firestore hooks.
*/
interface AppState {
selectedNetworkId: string | null;
setSelectedNetwork: (id: string | null) => void;
}
export const useAppStore = create<AppState>((set) => ({
selectedNetworkId: null,
setSelectedNetwork: (id) => set({ selectedNetworkId: id }),
}));