glam/frontend/src/pages/Settings.tsx
kempersc 2761857b0d Add scripts for converting OWL/Turtle ontology to Mermaid and PlantUML diagrams
- Implemented `owl_to_mermaid.py` to convert OWL/Turtle files into Mermaid class diagrams.
- Implemented `owl_to_plantuml.py` to convert OWL/Turtle files into PlantUML class diagrams.
- Added two new PlantUML files for custodian multi-aspect diagrams.
2025-11-22 23:01:13 +01:00

16 lines
333 B
TypeScript

/**
* Settings Page
*
* Provides user interface for managing application preferences,
* visualization settings, and persistent state.
*/
import { SettingsPanel } from '../components/settings/SettingsPanel';
export function Settings() {
return (
<div className="settings-page">
<SettingsPanel />
</div>
);
}