Files
bodyshop/client/src/components/job-checklist/job-checklist-display.component.jsx

12 lines
327 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>
);
}