scrimba
Frontend Career Path
Advanced React
Reusability
Custom Hooks - useToggle part 4
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

Custom Hooks - useToggle part 4
AboutCommentsNotes
Custom Hooks - useToggle part 4
Expand for more info
components
Menu
Menu.js
run
preview
console
import React from "react"
import Toggle from "../Toggle/index"

export default function Menu({ children, onOpen }) {
return (
<Toggle onToggle={onOpen}>
<div className="menu">
{children}
</div>
</Toggle>
)
}
Console
/index.html
-3:04