Files
react-native/packages/rn-tester/js/examples/Performance/performanceComparisonExamples/index.js
T
Xin Chen 970ba05127 Add example with side effect in render got triggered directly (#38830)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38830

Changelog:
[Internal] - Add example with side effect in render got triggered directly

Reviewed By: rshest

Differential Revision: D48055836

fbshipit-source-id: 8bf596165741bde93cf44cd96b93fb2efaea1b13
2023-08-23 15:02:10 -07:00

18 lines
780 B
JavaScript

/**
* 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.
*
* @flow strict-local
* @format
* @oncall react_native
*/
export {default as ReRenderWithNonPureChildExample} from './ReRenderWithNonPureChildExample';
export {default as ReRenderWithObjectPropExample} from './ReRenderWithObjectPropExample';
export {default as SetStateInWrongEffectExample} from './SetStateInWrongEffectExample';
export {default as RenderOffscreenContentExample} from './RenderOffscreenContentExample';
export {default as NotMemoizeExpensiveTaskExample} from './NotMemoizeExpensiveTaskExample';
export {default as EffectInRenderExample} from './EffectInRenderExample';