From eec2b7bc8b1de6f4e8162bd236c2b2d66132c0af Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 24 Jun 2024 22:41:33 +0530 Subject: [PATCH] feat: runs --- src/components/organisms/Runs.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/components/organisms/Runs.tsx 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 ( + + + + + + ); +}