mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
16 lines
379 B
C++
16 lines
379 B
C++
#include "pch.h"
|
|
#include "ReactPackageProvider.h"
|
|
#include "NativeModules.h"
|
|
|
|
using namespace winrt::Microsoft::ReactNative;
|
|
|
|
namespace winrt::bluewallet::implementation
|
|
{
|
|
|
|
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
|
|
{
|
|
AddAttributedModules(packageBuilder);
|
|
}
|
|
|
|
} // namespace winrt::bluewallet::implementation
|