- 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
440 B
TypeScript
16 lines
440 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import { GraphProvider } from './contexts/GraphContext'
|
|
import { UIStateProvider } from './contexts/UIStateContext'
|
|
import './index.css'
|
|
import App from './App.tsx'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<UIStateProvider>
|
|
<GraphProvider>
|
|
<App />
|
|
</GraphProvider>
|
|
</UIStateProvider>
|
|
</StrictMode>,
|
|
)
|