Created the main.jsx

This commit is contained in:
Mathias Wagner 2023-05-08 19:45:50 +02:00
parent 3df6eb357c
commit 94c4ece183
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

9
client/src/main.jsx Normal file
View File

@ -0,0 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.jsx';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);