mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-23 13:30:25 +08:00
7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
import { atom } from "recoil"
|
|
|
|
export const studiesState = atom<Study[]>({
|
|
key: "studies",
|
|
default: [],
|
|
})
|