Created
February 10, 2021 16:56
-
-
Save DZuz14/a821a4c9f5acc77c4c3ddd5eff3fa63e to your computer and use it in GitHub Desktop.
baradded
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const StatRow = ({ stat }) => { | |
const { away, home } = stat; | |
return ( | |
<div> | |
<Stat> | |
<div> | |
<TeamRank marginRight={10}>#{away.team_rank}</TeamRank> | |
<StatValue>{away.stat_value}</StatValue> | |
</div> | |
<StatName>{away.stat_name}</StatName> | |
<div> | |
<StatValue>{home.stat_value}</StatValue> | |
<TeamRank marginLeft={10}>#{home.team_rank}</TeamRank> | |
</div> | |
</Stat> | |
<BarGroup> | |
<Bar /> | |
<Bar /> | |
</BarGroup> | |
</div> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment