recharts / react-smooth

react animation
MIT License
277 stars 38 forks source link

Update simple example in README #25

Closed matsilva closed 5 years ago

matsilva commented 6 years ago
<Animate to={0} from={1} attributeName="opacity">
  <div />
</Animate>

Should be this

<Animate to="0" from="1" attributeName="opacity">
  <div />
</Animate>

Based on this https://github.com/recharts/react-smooth/blob/master/src/Animate.js#L15 and this https://github.com/recharts/react-smooth/blob/master/src/Animate.js#L16