andito's picture
andito HF Staff
Restructure for HuggingFace Space compatibility
0f739b8
raw
history blame contribute delete
240 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>,
);