mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
🚧 (WIP) blueprints table
This commit is contained in:
32
src/components/BlueprintsTable.tsx
Normal file
32
src/components/BlueprintsTable.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
"use client";
|
||||
|
||||
import { ColumnDef } from "@tanstack/react-table";
|
||||
import { DomainsDataTable } from "@app/components/DomainsDataTable";
|
||||
import { Button } from "@app/components/ui/button";
|
||||
import { ArrowUpDown } from "lucide-react";
|
||||
import { useState } from "react";
|
||||
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
||||
import { formatAxiosError } from "@app/lib/api";
|
||||
import { createApiClient } from "@app/lib/api";
|
||||
import { useEnvContext } from "@app/hooks/useEnvContext";
|
||||
import { Badge } from "@app/components/ui/badge";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { useTranslations } from "next-intl";
|
||||
import CreateDomainForm from "@app/components/CreateDomainForm";
|
||||
import { useToast } from "@app/hooks/useToast";
|
||||
import { useOrgContext } from "@app/hooks/useOrgContext";
|
||||
|
||||
export type BlueprintRow = {
|
||||
blueprintId: number;
|
||||
source: string;
|
||||
succeeded: boolean;
|
||||
name: string;
|
||||
};
|
||||
|
||||
type Props = {
|
||||
blueprints: BlueprintRow[];
|
||||
};
|
||||
|
||||
export default function BlueprintsTable({ blueprints }: Props) {
|
||||
return <></>
|
||||
}
|
||||
Reference in New Issue
Block a user