mirror of
https://github.com/huggingface/lerobot.git
synced 2026-06-01 11:21:27 +00:00
8 lines
140 B
React
8 lines
140 B
React
|
|
import { createRoot } from 'react-dom/client'
|
||
|
|
import App from './App.jsx'
|
||
|
|
|
||
|
|
createRoot(document.getElementById('root')).render(
|
||
|
|
<App />
|
||
|
|
)
|
||
|
|
|