- 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.
16 lines
333 B
TypeScript
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>
|
|
);
|
|
}
|