feat(scientist): add tab Científico com MiroFlowControl
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
aa0ce768ed
commit
9f6875367c
|
|
@ -1,4 +1,5 @@
|
||||||
import { BrowserFrame } from "@/components/Browser/BrowserFrame";
|
import { BrowserFrame } from "@/components/Browser/BrowserFrame";
|
||||||
|
import { MiroFlowControl } from "@/components/MiroFlowControl";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { useMutation, useQuery } from "@tanstack/react-query";
|
import { useMutation, useQuery } from "@tanstack/react-query";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
|
|
@ -200,6 +201,10 @@ export default function Scientist() {
|
||||||
<Lightbulb className="w-4 h-4 mr-2" />
|
<Lightbulb className="w-4 h-4 mr-2" />
|
||||||
Sugestões
|
Sugestões
|
||||||
</TabsTrigger>
|
</TabsTrigger>
|
||||||
|
<TabsTrigger value="scientific" className="data-[state=active]:bg-cyan-500">
|
||||||
|
<Brain className="w-4 h-4 mr-2" />
|
||||||
|
Científico
|
||||||
|
</TabsTrigger>
|
||||||
</TabsList>
|
</TabsList>
|
||||||
|
|
||||||
<TabsContent value="knowledge" className="space-y-4">
|
<TabsContent value="knowledge" className="space-y-4">
|
||||||
|
|
@ -827,6 +832,10 @@ export default function Scientist() {
|
||||||
</Card>
|
</Card>
|
||||||
)}
|
)}
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="scientific" className="space-y-4">
|
||||||
|
<MiroFlowControl />
|
||||||
|
</TabsContent>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue