mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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
18 lines
780 B
JavaScript
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';
|