react test
Some checks failed
Build and Push Docker Image to Gitea Registry / build-and-push (push) Failing after 26s
Some checks failed
Build and Push Docker Image to Gitea Registry / build-and-push (push) Failing after 26s
This commit is contained in:
11
src/index.js
Normal file
11
src/index.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom/client';
|
||||
//import './index.css'; // Falls du globale Styles hast
|
||||
import App from './App';
|
||||
|
||||
const root = ReactDOM.createRoot(document.getElementById('root'));
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
||||
Reference in New Issue
Block a user