Simple websocket compliant front-end

This commit is contained in:
2023-03-13 15:59:03 +01:00
commit 0b7b9b544a
21 changed files with 29697 additions and 0 deletions

13
src/index.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);