yuting111222's picture
Add Health Assistant AI project with AI food analyzer and complete backend/frontend
89b8989
raw
history blame contribute delete
235 Bytes
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>,
)