mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 23:38:57 +01:00
20 lines
363 B
C
20 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>
|
|||
|
{
|
|||
|
};
|
|||
|
}
|
|||
|
|