File size: 663 Bytes
c2ea5ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from "react";
import { Button } from "@/components/ui/button";
import { Link } from "lucide-react";
import { useModal } from "@/context/ModalContext";

export function ObservabilitySection() {
  const { openModal } = useModal();

  const handleConnectObservability = () => {
    openModal("observability-connection", "Connect to AI Observability");
  };

  return (
    <div className="space-y-2">
              <Button
          onClick={handleConnectObservability}
          className="w-full justify-start gap-2"
          size="lg"
        >
        <Link className="h-4 w-4" />
        Connect AI Observability
      </Button>
    </div>
  );
}