UNO card game web app (Node.js/React) with Miku bot integration. Previously an independent git repo (fork of mizanxali/uno-online). Removed .git/ and absorbed into main repo for unified tracking. Includes bot integration code: botActionExecutor, cardParser, gameStateBuilder, and server-side bot action support. 37 files, node_modules excluded via local .gitignore.
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import './index.css'
|
|
import App from './App'
|
|
import { BrowserRouter } from 'react-router-dom'
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<BrowserRouter>
|
|
<App />
|
|
</BrowserRouter>
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
)
|