In Chapter 3, we looked at building components for Blazor. But we are not done yet. There is still a lot more we need to discuss about components. One of the things we really need to look at is templated components and Razor templates. Then we will look at component libraries, virtualization, and dynamic components.
Using Templated Components
Components are Blazor’s building block for reuse. In C#, generics are heavily used for reuse; just think about all the collections like List<T> you use with generics. Would it not be cool if ...