Files
react-native/packages/react-native/Libraries/Lists/VirtualizedList.js
T
Jakub Piasecki 322142aab3 Further reduce naming collisions in the API snapshot (#52281)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52281

Changelog: [Internal]

Reviewed By: huntie

Differential Revision: D77355160

fbshipit-source-id: b1a59b3817b88bf6de953816fc272633b14b3a54
2025-06-26 03:37:05 -07:00

26 lines
642 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
*/
'use strict';
import VirtualizedLists from '@react-native/virtualized-lists';
type VirtualizedListType = typeof VirtualizedLists.VirtualizedList;
const VirtualizedListComponent: VirtualizedListType =
VirtualizedLists.VirtualizedList;
export type {
ListRenderItemInfo,
ListRenderItem,
Separators,
VirtualizedListProps,
} from '@react-native/virtualized-lists';
export default VirtualizedListComponent;