While looking into implementing a simple session storage in a Blazor app, I found multiple references to Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage and what appears to be some pretty simple implementations. The problem is that this component is being shown as deprecated in nuget and I can't find a replacement.
@using Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage@inject ProtectedSessionStorage ProtectedSessionStoreWhat is the new/proper way of doing this in .Net 8 without the deprecated libraries?