mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a44dd57f10
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45164 Some changes have been made to the codegen since `react-native-test-library` was published. This diff updates the generated artifacts in that library. Changelog: [Internal] Reviewed By: fkgozali Differential Revision: D59010093 fbshipit-source-id: f11ccd3645da72d45c70581e485f8546166ca182
29 lines
682 B
C++
29 lines
682 B
C++
/**
|
|
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
*
|
|
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
* once the code is regenerated.
|
|
*
|
|
* @generated by codegen project: GenerateStateH.js
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef ANDROID
|
|
#include <folly/dynamic.h>
|
|
#endif
|
|
|
|
namespace facebook::react {
|
|
|
|
class SampleNativeComponentState {
|
|
public:
|
|
SampleNativeComponentState() = default;
|
|
|
|
#ifdef ANDROID
|
|
SampleNativeComponentState(SampleNativeComponentState const &previousState, folly::dynamic data){};
|
|
folly::dynamic getDynamic() const {
|
|
return {};
|
|
};
|
|
#endif
|
|
};
|
|
|
|
} // namespace facebook::react
|