blob: 4b1da9003e9912802e6f92ec32957f842290d396 [file] [log] [blame]
import React from 'react';
import StateMachine from 'components/StateMachine';
import { getClassForScheduleStatus, taskToStateMachine } from 'utils/Task';
export default function TaskStateMachine({ task }) {
const states = taskToStateMachine(task);
return <StateMachine className={getClassForScheduleStatus(task.status)} states={states} />;
}