2022-11-17

In

my last article, I looked at building a simple autocomplete component within
a Blazor WebAssembly application that fetches data dynamically from a database
via an API depending on what the user enters into an input. It works nicely but
it has not been designed to be reusable. In this article, I look at the steps required to convert the
component so that it can be plugged in anywhere within an application and work
with any kind of data.

Show more