mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
394 B
C#
18 lines
394 B
C#
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Artemis.UI.Avalonia.Screens.Debugger.Tabs.Logs
|
|
{
|
|
public class LogsDebugView : ReactiveUserControl<LogsDebugViewModel>
|
|
{
|
|
public LogsDebugView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
} |