Improve sidebar nav

This commit is contained in:
TheXamlGuy
2024-06-23 17:25:59 +01:00
parent 574a9d0983
commit 590bc61d70
6 changed files with 45 additions and 17 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ namespace Toolkit.Foundation;
public interface IComponentFactory
{
IComponentHost? Create<TComponent, TConfiguration>(string name,
TConfiguration configuration, Action<IServiceCollection>? servicesDelegate = null)
TConfiguration? configuration = null,
Action<IServiceCollection>? servicesDelegate = null)
where TComponent : IComponent
where TConfiguration : ComponentConfiguration, new();
}