mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
fda1acec51
Summary: # Changelog: [Internal][Added] - Use injected VirtualizedSectionList if set Reviewed By: kacieb Differential Revision: D27004445 fbshipit-source-id: 9c07ee80c893817c1fe3171a4ee271f5839568c9
18 lines
368 B
JavaScript
18 lines
368 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import typeof VirtualizedSectionList from './VirtualizedSectionList';
|
|
|
|
export default {
|
|
unstable_VSL: (null: ?VirtualizedSectionList),
|
|
};
|