Use new UI (#8983)

* fixup build

* swap frontends
This commit is contained in:
Blake Blackshear
2023-12-16 16:20:59 +00:00
parent a2c6f45454
commit bdebb99b5a
286 changed files with 20010 additions and 20007 deletions

View File

@@ -1,8 +1,10 @@
import { render } from 'preact'
import App from './app'
import { ApiProvider } from './api';
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
render(<ApiProvider>
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</ApiProvider>, document.getElementById('app') as HTMLElement)
</React.StrictMode>,
)