diff --git a/patterns/1.conditionals-in-jsx.md b/patterns/1.conditionals-in-jsx.md index b3cfaa1..bed24df 100644 --- a/patterns/1.conditionals-in-jsx.md +++ b/patterns/1.conditionals-in-jsx.md @@ -72,17 +72,17 @@ const sampleComponent = () => { return (
Blah
+ returnBlah
; } else if (flag5) { -Meh
+ returnMeh
; } else { -Herp
+ returnHerp
; } } else { -Derp
+ returnDerp
; } } }