14 lines
272 B
C#
14 lines
272 B
C#
|
|
using Avalonia.ReactiveUI;
|
||
|
|
|
||
|
|
using InkForge.Common.ViewModels.Landing;
|
||
|
|
|
||
|
|
namespace InkForge.Common.Views.LandingViews;
|
||
|
|
|
||
|
|
public partial class CreateWorkspaceView : ReactiveUserControl<CreateWorkspaceViewModel>
|
||
|
|
{
|
||
|
|
public CreateWorkspaceView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|