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

14 lines
227 B
C#
Raw Normal View History

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