diff --git a/client/src/pages/DevelopmentModule.tsx b/client/src/pages/DevelopmentModule.tsx
index fae97be..04c5576 100644
--- a/client/src/pages/DevelopmentModule.tsx
+++ b/client/src/pages/DevelopmentModule.tsx
@@ -28,8 +28,9 @@ import DevAgent from "@/components/lowcode/DevAgent";
import OpenClawPanel from "@/components/OpenClawPanel";
import AutomationCenter from "./AutomationCenter";
import DevCenter from "./DevCenter";
+import { MiroFlowControl } from "@/components/MiroFlowControl";
-type ActiveTool = "home" | "doctypes" | "pages" | "workflows" | "dashboards" | "reports" | "scripts" | "ide" | "agent" | "openclaw" | "automationcenter" | "designstudio";
+type ActiveTool = "home" | "doctypes" | "pages" | "workflows" | "dashboards" | "reports" | "scripts" | "ide" | "agent" | "openclaw" | "automationcenter" | "designstudio" | "miroflow";
interface Dashboard {
id: number;
@@ -289,6 +290,15 @@ export default function DevelopmentModule() {
count: 0,
category: "dev"
},
+ {
+ id: "miroflow" as ActiveTool,
+ name: "MiroFlow",
+ description: "Análises científicas e estatísticas",
+ icon: Brain,
+ color: "bg-cyan-500",
+ count: 0,
+ category: "scientific"
+ },
];
const [, navigate] = useLocation();
@@ -738,6 +748,7 @@ export default function DevelopmentModule() {
{activeTool === "openclaw" && }
{activeTool === "automationcenter" && }
{activeTool === "designstudio" && }
+ {activeTool === "miroflow" && }