Exercise
Build a strongly-typed React function component called List that accepts a string array as items, includes an auto-focused search input, and highlights matching items in bold. This exercise helps you apply TypeScript typings to props, enhancing your ability to create robust and maintainable React components.
We'll cover the following...
We'll cover the following...
The challenge #
Our challenge in the exercise is to build a strongly-typed function component called List that renders a list of strings ...