public commit

This commit is contained in:
dswbx
2024-11-16 12:01:47 +01:00
commit 90f80c4280
582 changed files with 49291 additions and 0 deletions
@@ -0,0 +1,19 @@
import { TaskForm } from "../form/TaskForm";
import { TaskComponent, type TaskComponentProps } from "./TaskComponent";
export function RenderTaskComponent(props: TaskComponentProps) {
const { task } = props.data;
return (
<TaskComponent {...props}>
<TaskForm
task={task}
onChange={console.log}
uiSchema={{
render: {
"ui:field": "LiquidJsField"
}
}}
/>
</TaskComponent>
);
}