import { DeleteButton, EditButton, List, ShowButton, useTable, } from "@refinedev/antd"; import type { BaseRecord } from "@refinedev/core"; import { Space, Table, Tag, Button, Tooltip, Typography } from "antd"; import { PlusOutlined, ApiOutlined, ForkOutlined, LockOutlined } from '@ant-design/icons'; const { Title } = Typography; export const BlueprintList = () => { const { tableProps } = useTable({ syncWithLocation: true, }); return ( <>
Deployment Blueprints
( {record?.config?.components?.length || 0} Components )} /> ( {record?.config?.networkPolicies?.length || 0} Policies )} /> (
); };