Files
flipper/react-native/react-native-flipper/windows/ReactNativeFlipper/ReactPackageProvider.cpp
Lorenzo Blasa 7d936c1ff8 Flipper module skeleton
Summary: Refactor and introduce the Flipper module skeleton. No implementations yet.

Reviewed By: passy

Differential Revision: D36760620

fbshipit-source-id: 5e3f1b5abef6177f27d2c4c8e0fa8ec370364900
2022-07-14 09:57:25 -07:00

26 lines
668 B
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "ReactPackageProvider.h"
#include "pch.h"
#if __has_include("ReactPackageProvider.g.cpp")
#include "ReactPackageProvider.g.cpp"
#endif
#include "FlipperModule.h"
using namespace winrt::Microsoft::ReactNative;
namespace winrt::ReactNativeFlipper::implementation {
void ReactPackageProvider::CreatePackage(
IReactPackageBuilder const& packageBuilder) noexcept {
AddAttributedModules(packageBuilder);
}
} // namespace winrt::ReactNativeFlipper::implementation