Move GraphComponentState type into tslib/react

This commit is contained in:
porink0424
2024-06-14 15:56:51 +09:00
parent 4725e256c9
commit 29a861f496
6 changed files with 10 additions and 9 deletions
@@ -1,10 +1,10 @@
import { Box, Typography, useTheme } from "@mui/material"
import * as Optuna from "@optuna/types"
import { FC } from "react"
import { GraphComponentState } from "../types"
export const GraphContainer: FC<{
plotDomId: string
graphComponentState: Optuna.GraphComponentState
graphComponentState: GraphComponentState
}> = ({ plotDomId, graphComponentState }) => {
const theme = useTheme()
return (