Add info about chart data

This commit is contained in:
Tanner Collin 2020-04-22 21:44:05 +00:00
parent ea99dd3374
commit 276254f71d

View File

@ -29,6 +29,7 @@ export function Charts(props) {
<p>Daily since March 2nd, 2020.</p> <p>Daily since March 2nd, 2020.</p>
<p>
{memberCount && {memberCount &&
<ResponsiveContainer width='100%' height={300}> <ResponsiveContainer width='100%' height={300}>
<LineChart data={memberCount}> <LineChart data={memberCount}>
@ -61,6 +62,11 @@ export function Charts(props) {
</LineChart> </LineChart>
</ResponsiveContainer> </ResponsiveContainer>
} }
</p>
<p>The Member Count is the amount of Prepaid, Current, Due, and Overdue members on Spaceport.</p>
<p>The Green Count is the amount of Prepaid and Current members.</p>
</Container> </Container>
); );