scrimba
React State Practice 2
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

React State Practice 2
AboutCommentsNotes
React State Practice 2
Expand for more info
App.js
run
preview
console
import React from "react"

// Given a stateless functional component, add state to it
// state should have a property called `isLoggedIn` which is a boolean
// (true if logged in, false if not)
// Then, give your best shot at rendering the word "in" if the user is logged in
// or "out" if the user is logged out.

function App() {
return (
<div>
<h1>You are currently logged (in/out)</h1>
</div>
)
}

export default App
Console
index.html
-4:09