mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-22 13:20:38 +08:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
import React from "react"
|
|
import { render } from "react-dom"
|
|
import { App } from "./components/App"
|
|
|
|
render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById("dashboard")
|
|
)
|