diff --git a/exercises/03.compound-components/02.problem.validation/toggle.tsx b/exercises/03.compound-components/02.problem.validation/toggle.tsx
index 978a30ee..1b86f4d8 100644
--- a/exercises/03.compound-components/02.problem.validation/toggle.tsx
+++ b/exercises/03.compound-components/02.problem.validation/toggle.tsx
@@ -11,12 +11,19 @@ export function Toggle({ children }: { children: React.ReactNode }) {
return {children}
}
+// 🐨 create a custom useToggle() hook here
+// create a new context variable and read ToggleContext with use
+// when no context is found, throw an error with a useful message
+// otherwise return the context
+
export function ToggleOn({ children }: { children: React.ReactNode }) {
+ // 🐨 instead reading context with use, we'll need to get that from useToggle()
const { on } = use(ToggleContext)!
return <>{on ? children : null}>
}
export function ToggleOff({ children }: { children: React.ReactNode }) {
+ // 🐨 instead reading context with use, we'll need to get that from useToggle()
const { on } = use(ToggleContext)!
return <>{on ? null : children}>
}
@@ -25,6 +32,7 @@ type ToggleButtonProps = Omit, 'on'> & {
on?: boolean
}
export function ToggleButton({ ...props }: ToggleButtonProps) {
+ // 🐨 instead reading context with use, we'll need to get that from useToggle()
const { on, toggle } = use(ToggleContext)!
return
}