Rename files to .jsx

This commit is contained in:
2024-10-28 20:36:04 +01:00
parent 552016f61d
commit 012465fb02
26 changed files with 1 additions and 1 deletions

10
frontend/src/index.jsx Normal file
View File

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