nimzuk's picture
Initial clean snapshot (no node_modules)
256b016
raw
history blame contribute delete
163 Bytes
import React from 'react'
import { createRoot } from 'react-dom/client'
import App from './ui/App.jsx'
createRoot(document.getElementById('root')).render(<App />)