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