Delete plotlyDarkTemplate from standalone_app

This commit is contained in:
porink0424
2024-03-29 11:13:32 +09:00
parent a8e5888900
commit 02638e853a
4 changed files with 3 additions and 10 deletions
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
import { Box, Typography, useTheme } from "@mui/material"
import { plotlyDarkTemplate } from "@optuna/storybook"
import init, { wasm_fanova_calculate } from "optuna"
import * as plotly from "plotly.js-dist-min"
import React, { FC, useEffect, useState } from "react"
import { plotlyDarkTemplate } from "../PlotlyDarkMode"
const plotDomId = "graph-hyperparameter-importances"
export const PlotImportance: FC<{ study: Study }> = ({ study }) => {
@@ -1,7 +1,7 @@
import { Box, Typography, useTheme } from "@mui/material"
import { plotlyDarkTemplate } from "@optuna/storybook"
import * as plotly from "plotly.js-dist-min"
import React, { FC, useEffect } from "react"
import { plotlyDarkTemplate } from "../PlotlyDarkMode"
const plotDomId = "graph-intermediate-values"
+1
View File
@@ -2,3 +2,4 @@ export { DataGrid } from "./components/DataGrid";
export type { DataGridColumn } from "./components/DataGrid";
export { PlotHistory } from "./components/PlotHistory";
export { TrialTable } from "./components/TrialTable";
export { plotlyDarkTemplate } from "./components/PlotlyDarkMode";