react test
Some checks failed
Build and Push Docker Image to Gitea Registry / build-and-push (push) Failing after 26s

This commit is contained in:
2025-01-26 00:08:35 +01:00
parent fadca54b3c
commit fbf79c71ac
5 changed files with 156 additions and 0 deletions

11
src/index.js Normal file
View 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>
);