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

Volume Information

Total:
Free:
Used:
); };