"use client"; import React, { useState } from "react"; import { IconDots, IconPlus } from "@tabler/icons-react"; import { Switch } from "../switch"; export const SkeletonThree = () => { return (

Add LLM

{" "} Add

); }; export const Row = ({ title, updatedAt, active = false, }: { title: string; updatedAt: string; active?: boolean; }) => { const [checked, setChecked] = useState(active); return (

{title}

{updatedAt}

); };