23 lines
291 B
TypeScript
23 lines
291 B
TypeScript
"use client"
|
|
|
|
|
|
import WorkFlowAutomationPortal from "@/components/dashboard/configure/workflowAutomation";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function WorkflowAutomationPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<WorkFlowAutomationPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |