mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-29 19:06:24 +02:00
refactor(connectors): streamline imports
This commit is contained in:
parent
37f11b1521
commit
dcf3bf02cd
1 changed files with 12 additions and 20 deletions
|
|
@ -1,32 +1,24 @@
|
||||||
"use client";
|
"use client";
|
||||||
import { cn } from "@/lib/utils";
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Card, CardContent, CardFooter, CardHeader } from "@/components/ui/card";
|
||||||
|
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible";
|
||||||
import {
|
import {
|
||||||
IconBrandGoogle,
|
|
||||||
IconBrandSlack,
|
|
||||||
IconBrandWindows,
|
|
||||||
IconBrandDiscord,
|
IconBrandDiscord,
|
||||||
IconSearch,
|
|
||||||
IconMessages,
|
|
||||||
IconDatabase,
|
|
||||||
IconCloud,
|
|
||||||
IconBrandGithub,
|
IconBrandGithub,
|
||||||
IconBrandNotion,
|
IconBrandNotion,
|
||||||
IconMail,
|
IconBrandSlack,
|
||||||
|
IconBrandWindows,
|
||||||
IconBrandZoom,
|
IconBrandZoom,
|
||||||
IconChevronRight,
|
|
||||||
IconWorldWww,
|
|
||||||
IconChevronDown,
|
IconChevronDown,
|
||||||
|
IconChevronRight,
|
||||||
|
IconMail,
|
||||||
|
IconWorldWww,
|
||||||
} from "@tabler/icons-react";
|
} from "@tabler/icons-react";
|
||||||
import { motion, AnimatePresence } from "framer-motion";
|
import { AnimatePresence, motion } from "framer-motion";
|
||||||
import { useState } from "react";
|
|
||||||
import { useParams } from "next/navigation";
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { Button } from "@/components/ui/button";
|
import { useParams } from "next/navigation";
|
||||||
import { Separator } from "@/components/ui/separator";
|
import { useState } from "react";
|
||||||
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible";
|
|
||||||
import { Badge } from "@/components/ui/badge";
|
|
||||||
import { Card, CardContent, CardFooter, CardHeader } from "@/components/ui/card";
|
|
||||||
import { useForm } from "react-hook-form";
|
|
||||||
|
|
||||||
// Define the Connector type
|
// Define the Connector type
|
||||||
interface Connector {
|
interface Connector {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue