This commit is contained in:
Jöran Malek 2024-02-09 13:02:20 +01:00
parent 527efff89a
commit 4e7dfc56a8
9 changed files with 54 additions and 2 deletions

View file

@ -0,0 +1,13 @@
using Avalonia.ReactiveUI;
using InkForge.Common.ViewModels;
namespace InkForge.Common.Views;
public partial class LandingView : ReactiveUserControl<LandingViewModel>
{
public LandingView()
{
InitializeComponent();
}
}