mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
public commit
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user