import React from 'react'; interface SubTotalProps { count: number; total: string; } export function SubTotal({ count, total }: SubTotalProps) { return (