diff --git a/gui/src/app/pages/HomePage/SamplingWindow/SamplingWindow.tsx b/gui/src/app/pages/HomePage/SamplingWindow/SamplingWindow.tsx index b1bfee9..0816f7f 100644 --- a/gui/src/app/pages/HomePage/SamplingWindow/SamplingWindow.tsx +++ b/gui/src/app/pages/HomePage/SamplingWindow/SamplingWindow.tsx @@ -1,7 +1,7 @@ import { FunctionComponent, useCallback, useContext } from "react"; +import { Split } from "@geoffcox/react-splitter"; import Box from "@mui/material/Box"; -import Divider from "@mui/material/Divider"; import Grid from "@mui/material/Grid"; import { CompileContext } from "@SpCompilation/CompileContext"; import RunPanel from "@SpComponents/RunPanel"; @@ -36,7 +36,7 @@ const SamplingWindow: FunctionComponent = () => { const { sampler, latestRun } = useStanSampler(compiledMainJsUrl); const isSampling = latestRun.status === "sampling"; return ( - + = () => { /> - - - + + + + - + ); };