scrimba
Learn React - Side Effects (Section 4)
State and Effect practices
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

State and Effect practices
AboutCommentsNotes
State and Effect practices
Expand for more info
App.jsx
run
preview
console
import WindowTracker from "./WindowTracker"

export default function App() {
/**
* Challenge:
* 1. Create state called `show`, default to `true`
* 2. When the button is clicked, toggle `show`
* 3. Only display `<WindowTracker>` if `show` is `true`
*/

return (
<main className="container">
<button>
Toggle WindowTracker
</button>
<WindowTracker />
</main>
)
}
Console
/index.html
-7:57