Files
optuna-dashboard/standalone_app/src/state.ts
T
2023-05-17 01:22:33 +09:00

7 lines
111 B
TypeScript

import { atom } from "recoil"
export const studiesState = atom<Study[]>({
key: "studies",
default: [],
})