InkForge/app/InkForge.Desktop/Views/LandingView.axaml.cs

14 lines
229 B
C#
Raw Normal View History

2024-02-09 13:02:20 +01:00
using Avalonia.ReactiveUI;
2024-02-16 02:23:58 +01:00
using InkForge.Desktop.ViewModels;
2024-02-09 13:02:20 +01:00
2024-02-16 02:23:58 +01:00
namespace InkForge.Desktop.Views;
2024-02-09 13:02:20 +01:00
public partial class LandingView : ReactiveUserControl<LandingViewModel>
{
public LandingView()
{
InitializeComponent();
}
}