File size: 196 Bytes
7596726 | 1 2 3 4 5 6 7 8 | // Minimal local state kept outside the shared SolverForge UI widgets.
export function createAppState(initialActiveTab) {
return {
currentPlan: null,
activeTab: initialActiveTab,
};
}
|
7596726 | 1 2 3 4 5 6 7 8 | // Minimal local state kept outside the shared SolverForge UI widgets.
export function createAppState(initialActiveTab) {
return {
currentPlan: null,
activeTab: initialActiveTab,
};
}
|