"use client"; import useNetworks from "@/hooks/useNetworks"; import { Trash2, AlertTriangle } from "lucide-react"; interface DeleteNetworkProps { networkId: string; } export default function DeleteNetwork({ networkId }: DeleteNetworkProps) { const { deleteNetwork } = useNetworks(); const handleDelete = () => { deleteNetwork(networkId); }; return (

Delete Network

Are you sure you want to delete this network?

This will also delete all servers & applications associated with it.

This action cannot be undone.
); }