Summary: Refactor and introduce the Flipper module skeleton. No implementations yet. Reviewed By: passy Differential Revision: D36760620 fbshipit-source-id: 5e3f1b5abef6177f27d2c4c8e0fa8ec370364900
26 lines
668 B
C++
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
|