Skip to content

Commit

Permalink
Merge pull request vasanthk#98 from CrazyDeveloper/patch-1
Browse files Browse the repository at this point in the history
Update 18.conditionals-in-jsx.md
  • Loading branch information
vasanthk authored Jan 24, 2018
2 parents 252ea07 + cc3bc70 commit 3c9e7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patterns/18.conditionals-in-jsx.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Instead of
```javascript
const sampleComponent = () => {
return isTrue ? <p>True!</p> : <none/>
return isTrue ? <p>True!</p> : null
};
```

Expand Down

0 comments on commit 3c9e7dd

Please sign in to comment.