mirror of
https://github.com/dnwSilver/tld.git
synced 2024-11-25 16:42:07 +00:00
18 lines
335 B
C#
18 lines
335 B
C#
using TUI.Engine.Components;
|
|
|
|
namespace TUI.Engine.Tests.Stubs;
|
|
|
|
public class TestComponent : ComponentAttribute
|
|
{
|
|
private string _content = "Lorem";
|
|
|
|
public void SetContent(string content)
|
|
{
|
|
_content = content;
|
|
}
|
|
|
|
protected override Sketch DrawComponent()
|
|
{
|
|
return new Sketch(_content);
|
|
}
|
|
} |