This commit is contained in:
2025-06-16 08:27:55 -04:00
parent 987cce1687
commit 14f95e3192
17 changed files with 4098 additions and 0 deletions

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

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