This commit is contained in:
TheXamlGuy
2024-07-17 21:43:58 +01:00
parent efd00ff81a
commit 93c7a43ab4
75 changed files with 231 additions and 183 deletions
+1 -2
View File
@@ -2,13 +2,12 @@
namespace Toolkit.Foundation;
public class Component :
IComponent
{
private readonly IComponentBuilder builder;
protected Component(IComponentBuilder builder) =>
protected Component(IComponentBuilder builder) =>
this.builder = builder;
public static TComponent? Create<TComponent>(IServiceProvider provider,