diff options
author | Pedro Machado <machadop1407@gmail.com> | 2025-06-23 16:50:43 -0700 |
---|---|---|
committer | Pedro Machado <machadop1407@gmail.com> | 2025-06-23 16:50:43 -0700 |
commit | eb0eed40d780ccd81d8e0fe956e288c1724f1883 (patch) | |
tree | 8df03b483e3701e99f9df527723c977766b8315a /src/main.jsx |
first commit
Diffstat (limited to 'src/main.jsx')
-rw-r--r-- | src/main.jsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.jsx b/src/main.jsx new file mode 100644 index 0000000..54b39dd --- /dev/null +++ b/src/main.jsx @@ -0,0 +1,10 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import App from './App.jsx' +import './index.css' + +ReactDOM.createRoot(document.getElementById('root')).render( + <React.StrictMode> + <App /> + </React.StrictMode>, +) |