Update CHANGELOG.md

This commit is contained in:
Kevin Qi 2018-06-28 09:47:00 -07:00 committed by GitHub
parent 96b10f1f39
commit c2f8fc942a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,8 +52,8 @@ const percentage = 60;
```jsx
<CircularProgressbar
percentage={percentage}
className={customClassForPercentage()} // calls function
text={customTextForPercentage()} // calls function
className={customClassForPercentage(percentage)} // call function directly
text={customTextForPercentage(percentage)} // call function directly
/>
```