We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9f5a88 commit 1cd4867Copy full SHA for 1cd4867
examples/auth-flow/app.js
@@ -12,7 +12,7 @@ const App = React.createClass({
12
13
updateAuth(loggedIn) {
14
this.setState({
15
- loggedIn: loggedIn
+ loggedIn
16
})
17
},
18
examples/nested-animations/app.js
@@ -18,7 +18,7 @@ const App = ({ children, location: { pathname } }) => {
component="div" transitionName="swap"
19
transitionEnterTimeout={500} transitionLeaveTimeout={500}
20
>
21
- {React.cloneElement(children || <div />, { key: key })}
+ {React.cloneElement(children || <div />, { key })}
22
</ReactCSSTransitionGroup>
23
</div>
24
)
0 commit comments