Skip to content

Commit 68fdc82

Browse files
committed
fix lint error
1 parent 089b509 commit 68fdc82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/auth-flow/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const App = React.createClass({
3535
<li><Link to="/about">About</Link></li>
3636
<li><Link to="/dashboard">Dashboard</Link> (authenticated)</li>
3737
</ul>
38-
{this.props.children || <p>You are {!this.state.loggedIn && "not"} logged in.</p>}
38+
{this.props.children || <p>You are {!this.state.loggedIn && 'not'} logged in.</p>}
3939
</div>
4040
)
4141
}

0 commit comments

Comments
 (0)