import React from "react"; import { toGigabytes } from "@/_utils/converter"; import Image from "next/image"; type Props = { title: string; totalSizeInByte: number; }; const ModelVersionItem: React.FC = ({ title, totalSizeInByte }) => (
{title}
{toGigabytes(totalSizeInByte)}
); export default ModelVersionItem;