Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created February 10, 2021 16:56
Show Gist options
  • Save DZuz14/a821a4c9f5acc77c4c3ddd5eff3fa63e to your computer and use it in GitHub Desktop.
Save DZuz14/a821a4c9f5acc77c4c3ddd5eff3fa63e to your computer and use it in GitHub Desktop.
baradded
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