12 lines
190 B
C#
12 lines
190 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Clario.Views;
|
|
|
|
public partial class DashboardSkeletonView : UserControl
|
|
{
|
|
public DashboardSkeletonView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|