scrimba
Learn React Hooks in one hour
Intro
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

Playground.js
run
preview
console
import React, { useState, useEffect, useRef, useCallback, useMemo } from 'react'
import randomColor from 'randomcolor'

export default function Playground() {
return <div className="playground">Hello World!</div>
}
Console
index.html
-5:17