Files
bodyshop/client/src/components/job-checklist/job-checklist-display.component.jsx
Dave Richer e83badb454 - the great reformat
Signed-off-by: Dave Richer <dave@imexsystems.ca>
2024-02-06 18:20:58 -05:00

12 lines
344 B
JavaScript

import React from "react";
import ConfigFormComponents from "../config-form-components/config-form-components.component";
export default function JobChecklistDisplay({checklist}) {
if (!checklist) return <div></div>;
return (
<div>
<ConfigFormComponents readOnly componentList={checklist}/>
</div>
);
}