fix(curriculum): replace single-line blocks with multi-line blocks for… (#41525)

* fix(curriculum) replace single-line blocks with multi-line blocks for Front End Libraries #41523

Second attempt

* Update curriculum/challenges/english/03-front-end-libraries/react/use--for-a-more-concise-conditional.md

Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>

Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
This commit is contained in:
Laurent Labine
2021-03-19 00:40:32 +01:00
committed by GitHub
parent b064991667
commit 00b37093db
25 changed files with 84 additions and 28 deletions

View File

@@ -16,7 +16,9 @@ jQuery has a function called `.prop()` that allows you to adjust the properties
Here's how you would disable all buttons:
`$("button").prop("disabled", true);`
```js
$("button").prop("disabled", true);
```
Disable only the `target1` button.