ui->merge->main

This commit is contained in:
Vishnu 2025-03-20 17:54:57 +05:30
parent 7950b58ba8
commit f6bde4f118
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import Widgets3D from "./Widgets3D";
import WidgetsFloating from "./WidgetsFloating";
const Widgets = () => {
const [activeOption, setActiveOption] = useState("Floating");
const [activeOption, setActiveOption] = useState("2D");
const handleToggleClick = (option: string) => {
setActiveOption(option);

View File

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