scrimba
Functional programming in React
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

Functional programming in React
AboutCommentsNotes
Functional programming in React
Expand for more info
App.jsx
run
preview
console
import React from "react"

export default function App(props) {
const [state, setState] = React.useState(null)
return (
<div>
<pre>{JSON.stringify({ name: "Luke" }, null, 2)}</pre>
</div>
)
}
Console
/index.html
-4:53