mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-05-15 04:34:46 -07:00
17 lines
359 B
C#
17 lines
359 B
C#
using Bloxstrap.ViewModels;
|
|
|
|
namespace Bloxstrap.Views.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for BootstrapperPage.xaml
|
|
/// </summary>
|
|
public partial class BootstrapperPage
|
|
{
|
|
public BootstrapperPage()
|
|
{
|
|
DataContext = new BootstrapperViewModel(this);
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|