Learn about layouts in Blazor—how they define a set of Blazor components that are rendered to display the structure of a web app—and how to create reusable layouts.
.NET 8 brings significant changes to Blazor—none bigger than support for multiple render modes. With auto render mode your component will run either on the server or in the browser, depending on how fast Blazor WASM can spin up. But now you need to figure out how to fetch and share data between components. Here are some handy techniques you can use.