mirror of
https://github.com/status-im/react-native-config.git
synced 2026-08-31 14:41:07 +00:00
Add support for react-native-windows. Update the docs and example and add an automatic CI test.
19 lines
373 B
C++
19 lines
373 B
C++
#include "pch.h"
|
|
#include "ReactPackageProvider.h"
|
|
#include "NativeModules.h"
|
|
|
|
|
|
using namespace winrt::Microsoft::ReactNative;
|
|
|
|
namespace winrt::ConfigExample::implementation
|
|
{
|
|
|
|
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
|
|
{
|
|
AddAttributedModules(packageBuilder);
|
|
}
|
|
|
|
} // namespace winrt::ConfigExample::implementation
|
|
|
|
|