diff --git a/exercises/03.compound-components/README.mdx b/exercises/03.compound-components/README.mdx index 1aae28ad..c9ed5b65 100644 --- a/exercises/03.compound-components/README.mdx +++ b/exercises/03.compound-components/README.mdx @@ -39,16 +39,8 @@ it's selected? We can easily add API surface area to support these use cases, but that's just more for us to code and more for users to learn. That's where compound components come in really handy! -import { Toggle } from '../07.control-props/01.solution/toggle' - -For the rest of the exercises in this workshop, we'll be working with a Toggle -component. Specifically, this one: - -
- -
- - +For the rest of the exercises in this workshop, we'll be working with a simple +`` component. Every reusable component starts out as a simple implementation for a specific use case. It's advisable to not overcomplicate your components and try to solve