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/41051 Strictifies flow to flow strict-local in files where doing that doesn't cause new flow errors. Changelog: Internal Reviewed By: yungsters Differential Revision: D50369011 fbshipit-source-id: b4a5a26b839b7327a3178e6f5b35246dea365a38
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
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.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import Scrollable from './SectionList-scrollable';
|
|
import ContentInset from './SectionList-contentInset';
|
|
import onEndReached from './SectionList-onEndReached';
|
|
import onViewableItemsChanged from './SectionList-onViewableItemsChanged';
|
|
import withSeparators from './SectionList-withSeparators';
|
|
import stickyHeadersEnabled from './SectionList-stickyHeadersEnabled';
|
|
import inverted from './SectionList-inverted';
|
|
|
|
exports.title = 'SectionList';
|
|
exports.category = 'ListView';
|
|
exports.documentationURL = 'https://reactnative.dev/docs/sectionlist';
|
|
exports.description = 'Performant, scrollable list of data.';
|
|
exports.showIndividualExamples = true;
|
|
exports.examples = [
|
|
ContentInset,
|
|
onEndReached,
|
|
onViewableItemsChanged,
|
|
withSeparators,
|
|
stickyHeadersEnabled,
|
|
inverted,
|
|
Scrollable,
|
|
];
|