mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 13:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			343 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			343 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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();
 | 
						|
    }
 | 
						|
} |