import React from "react"; type InfoRowProps = React.PropsWithChildren<{ title: React.ReactNode; }>; const InfoRow: React.FC = ({ title, children }) => (
{title}:
{children}
); export default React.memo(InfoRow);