import { Row, Col } from "antd"; import { Total } from "../../../types/Profile/TProfile"; type Props = { total: Total; }; const Item = ({ label, value }: { label: string; value: React.ReactNode }) => (
{label} {value}
); const TotalStatistics: React.FC = ({ total }) => { return ( ); }; export default TotalStatistics;