diff --git a/src/components/organisms/Runs.tsx b/src/components/organisms/Runs.tsx new file mode 100644 index 00000000..e3927fd4 --- /dev/null +++ b/src/components/organisms/Runs.tsx @@ -0,0 +1,27 @@ +import React, { useEffect } from 'react'; +import { Grid } from "@mui/material"; +import { RunsTable } from "../molecules/RunsTable"; + +interface RunsProps { + currentInterpretationLog: string; + abortRunHandler: () => void; + runId: string; + runningRecordingName: string; +} + +export const Runs = ( + { currentInterpretationLog, abortRunHandler, runId, runningRecordingName }: RunsProps) => { + + return ( + + + + + + ); +}