import Divider from '@/components/ui/Divider'; import ValueLabeled from '@/components/ui/ValueLabeled'; import { IOperationSchemaStats } from '@/models/oss'; interface OssStatsProps { stats?: IOperationSchemaStats; } function OssStats({ stats }: OssStatsProps) { if (!stats) { return null; } return (
); } export default OssStats;