mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
19 lines
363 B
C++
19 lines
363 B
C++
#pragma once
|
|
#include "MainPage.g.h"
|
|
#include <winrt/Microsoft.ReactNative.h>
|
|
|
|
namespace winrt::bluewallet::implementation
|
|
{
|
|
struct MainPage : MainPageT<MainPage>
|
|
{
|
|
MainPage();
|
|
};
|
|
}
|
|
|
|
namespace winrt::bluewallet::factory_implementation
|
|
{
|
|
struct MainPage : MainPageT<MainPage, implementation::MainPage>
|
|
{
|
|
};
|
|
}
|
|
|