21 lines
270 B
TypeScript
21 lines
270 B
TypeScript
"use client"
|
|
|
|
|
|
import MobileFlowsPortal from "@/components/dashboard/admin/Configuration/mobileFlows";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function MobileFlowPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<MobileFlowsPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |