mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-21 13:10:53 +08:00
12 lines
228 B
TypeScript
12 lines
228 B
TypeScript
import { atom } from "recoil"
|
|
|
|
export const studySummariesState = atom<StudySummary[]>({
|
|
key: "studySummaries",
|
|
default: [],
|
|
})
|
|
|
|
export const studyDetailsState = atom<StudyDetails>({
|
|
key: "studyDetails",
|
|
default: {},
|
|
})
|