import { CreateVolumeForm } from "~/components/create-volume-form"; import { Card } from "~/components/ui/card"; import { HealthchecksCard } from "../components/healthchecks-card"; import type { Volume } from "~/lib/types"; type Props = { volume: Volume; }; export const VolumeInfoTabContent = ({ volume }: Props) => { return (