17 lines
503 B
TypeScript
17 lines
503 B
TypeScript
|
|
import { StrictMode } from 'react'
|
||
|
|
import { createRoot } from 'react-dom/client'
|
||
|
|
import PaneContent from './components/main/PaneContent.tsx'
|
||
|
|
import PaneGlass from './components/main/PaneGlass.tsx'
|
||
|
|
import PaneSidebar from './components/main/PaneSidebar.tsx'
|
||
|
|
|
||
|
|
createRoot(document.querySelector('div.layout-foreground')!).render(
|
||
|
|
<StrictMode>
|
||
|
|
<PaneGlass>
|
||
|
|
<PaneSidebar />
|
||
|
|
</PaneGlass>
|
||
|
|
<PaneGlass>
|
||
|
|
<PaneContent />
|
||
|
|
</PaneGlass>
|
||
|
|
</StrictMode>,
|
||
|
|
)
|