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 ( ); }