rc-1
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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>,
|
||||
)
|
||||
Reference in New Issue
Block a user