Add src/main.jsx

This commit is contained in:
Eric Lay 2026-03-11 08:35:28 -05:00
parent 0a7bf0b581
commit 7a5ae5a43b
1 changed files with 8 additions and 0 deletions

8
src/main.jsx Normal file
View File

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