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