Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/BlazorWebView/src/Maui/RootComponentsCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.ObjectModel;
using System.Diagnostics.CodeAnalysis;
using Microsoft.AspNetCore.Components.Web;

namespace Microsoft.AspNetCore.Components.WebView.Maui
Expand All @@ -12,6 +13,7 @@ public class RootComponentsCollection : ObservableCollection<RootComponent>, IJS
/// Initializes a new instance of <see cref="RootComponentsCollection"/>.
/// </summary>
/// <param name="jsComponents">Configuration to enable JS component support.</param>
[DynamicDependency(DynamicallyAccessedMemberTypes.NonPublicMethods, typeof(JSComponentConfigurationStore))]
public RootComponentsCollection(JSComponentConfigurationStore jsComponents)
{
JSComponents = jsComponents;
Expand Down