This commit is contained in:
2025-10-01 21:00:05 -04:00
parent a69f7864f3
commit 99c98b7e42
18 changed files with 3032 additions and 31 deletions

View File

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