using Microsoft.AspNetCore.Components;

namespace AIStudio.Tools;

public sealed class NoComponent: IComponent
{
    public void Attach(RenderHandle renderHandle)
    {
        throw new NotImplementedException();
    }

    public Task SetParametersAsync(ParameterView parameters)
    {
        throw new NotImplementedException();
    }
}