私のApp.razorでこのエラーが発生しています。
予期しない名前「CascadingAuthenticationState」のマークアップ要素が見つかりました。これがコンポーネントであることを意図している場合は、その名前空間に@usingディレクティブを追加します
これは私が使用しているコードです
<CascadingAuthenticationState>
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
</CascadingAuthenticationState>
Visual Studio 2019プレビューを使用していますが、アプリケーションを実行できますが、カスケードに赤い線が表示されるのはなぜですか?ご協力ありがとうございました。