import { CssBaseline, ThemeProvider } from "@mui/material" import { Meta, StoryObj } from "@storybook/react" import React from "react" import { useMockStudy } from "../MockStudies" import { lightTheme } from "../styles/lightTheme" import { PlotIntermediateValues } from "./PlotIntermediateValues" const meta: Meta = { component: PlotIntermediateValues, title: "PlotIntermediateValues", tags: ["autodocs"], decorators: [ (Story, storyContext) => { const { study } = useMockStudy(storyContext.parameters?.studyId) if (!study) return

loading...

return ( ) }, ], } export default meta type Story = StoryObj export const MockStudyExample1: Story = { parameters: { studyId: 1, }, }