tannerlinsley / react-show

⚛️ A 3kb css animation component for React.
https://codesandbox.io/s/2v66j7pm8y
402 stars 30 forks source link

Code Sandbox Typo #20

Open markclynch opened 4 years ago

markclynch commented 4 years ago

bug is @ line 136 of below: https://codesandbox.io/s/2v66j7pm8y

margin-left: show ? '200px' : '0',

should be:

marginLeft: show ? '200px' : '0',

or

'margin-left': show ? '200px' : '0',