updated pannels

This commit is contained in:
Nalvazhuthi
2025-03-25 14:25:51 +05:30
parent 61b3c4ee2c
commit a84fe40486
7 changed files with 289 additions and 393 deletions

View File

@@ -7,7 +7,7 @@ interface ModuleStore {
}
const useModuleStore = create<ModuleStore>((set) => ({
activeModule: "builder", // Initial state
activeModule: "visualization", // Initial state
setActiveModule: (module) => set({ activeModule: module }), // Update state
}));