Files
Linktree/src/index.js
jafreli fbf79c71ac
Some checks failed
Build and Push Docker Image to Gitea Registry / build-and-push (push) Failing after 26s
react test
2025-01-26 00:08:35 +01:00

12 lines
296 B
JavaScript

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>
);