feat: create run ui directory

This commit is contained in:
amhsirak
2025-01-09 20:02:58 +05:30
parent 4325070c39
commit 82b8b4d51f
10 changed files with 11 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ import { useBrowserDimensionsStore } from "../../context/browserDimensions";
import { useGlobalInfoStore } from "../../context/globalInfo";
import { TabContext, TabPanel } from "@mui/lab";
import { LeftSidePanelSettings } from "../molecules/LeftSidePanelSettings";
import { RunSettings } from "../molecules/RunSettings";
import { RunSettings } from "../run/RunSettings";
const fetchWorkflow = (id: string, callback: (response: WorkflowFile) => void) => {
getActiveWorkflow(id).then(

View File

@@ -1,27 +0,0 @@
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 (
<Grid container direction="column" sx={{ padding: '30px' }}>
<Grid item xs>
<RunsTable
currentInterpretationLog={currentInterpretationLog}
abortRunHandler={abortRunHandler}
runId={runId}
runningRecordingName={runningRecordingName}
/>
</Grid>
</Grid>
);
}