Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 8fcd595

Browse files
committed
Correct mistake in example
1 parent e854e67 commit 8fcd595

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const FadeInOutComponent = ({active, ...rest}) => (
3838
enterStyle={{ opacity: transit(1.0, 500, "ease-in-out") }}
3939
leaveStyle={{ opacity: transit(0, 500, "ease-in-out") }}
4040
activeStyle={{ opacity: 1.0 }}
41-
active={props.active}
41+
active={active}
4242
>
4343
<MyComponent {...rest} />
4444
</CSSTransition>

0 commit comments

Comments
 (0)