AI Service Reliability Monitor & Failover Switch v1.0.0

This commit is contained in:
Bun Bun
2026-06-15 06:24:05 +00:00
commit e08e26bbc5
21 changed files with 4935 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './popup'
const container = document.getElementById('root')
if (container) {
createRoot(container).render(
<StrictMode>
<App />
</StrictMode>
)
}