Jimmyzheng-10's picture
Add app.py and the screencoder repo
a383d0e
raw
history blame
235 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);