import React from "react"; const Stat = (obj) => { let statLeft; if (obj.title1 || obj.content1) { } let statRight; if (obj.title2 || obj.content2) { } return (

{obj.header}

{obj.title1}

{obj.content1}

{obj.title2}

{obj.content2}

) } export default Stat;