This chapter will introduce the specifics of Blazor pages and components. You will learn how page files are created and how navigation is set up. Then you will learn all that you need to know about components and their features, such as parameters, custom events, and more.
Pages and Navigation
In general, a page in Blazor is a .razor file that contains your code, and it has a route to it specified in the code. It can also read parameters, and that same file can act as a component, which you will learn ...