Spaces:
Running
Running
File size: 386 Bytes
ce72224 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'
// Plugin System laden
import { initializePlugins } from './utils/pluginManager.js'
// Plugins vor der App laden
initializePlugins()
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
|