"use client"; import useNetworks from "@/hooks/useNetworks"; interface DeleteNetworkProps { networkId: string; } export default function DeleteNetwork({ networkId }: DeleteNetworkProps) { const { deleteNetwork } = useNetworks(); return (

Delete Network

Are you sure you want to delete this network?

); }