remove protocol enforcement

This commit is contained in:
SpikeHD
2022-06-11 15:48:33 -07:00
parent e71a73c19a
commit b8540f0891
2 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client'
import './index.css'
import App from './ui/App'
// import Test from './ui/Test'
import Test from './ui/Debug'
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
@@ -11,8 +11,8 @@ const root = ReactDOM.createRoot(
root.render(
<React.StrictMode>
<App />
{/*<Test />*/}
{/* <App /> */}
<Test />
</React.StrictMode>
)