Files
parcer/src/components/run/Runs.tsx

28 lines
760 B
TypeScript
Raw Normal View History

2025-04-01 23:42:04 +05:30
import React from 'react';
2024-06-24 22:41:33 +05:30
import { Grid } from "@mui/material";
2025-01-09 20:02:58 +05:30
import { RunsTable } from "./RunsTable";
2024-06-24 22:41:33 +05:30
interface RunsProps {
currentInterpretationLog: string;
2025-06-12 11:17:27 +05:30
abortRunHandler: (runId: string, robotName: string, browserId: string) => void;
2024-06-24 22:41:33 +05:30
runId: string;
runningRecordingName: string;
}
export const Runs = (
{ currentInterpretationLog, abortRunHandler, runId, runningRecordingName }: RunsProps) => {
return (
2025-01-09 17:16:26 +05:30
<Grid container direction="column" sx={{ padding: '30px' }}>
2024-06-24 22:41:33 +05:30
<Grid item xs>
<RunsTable
currentInterpretationLog={currentInterpretationLog}
abortRunHandler={abortRunHandler}
runId={runId}
runningRecordingName={runningRecordingName}
/>
</Grid>
</Grid>
);
}