Files
react-native/packages/rn-tester/js/examples/SectionList/SectionListIndex.js
T
Gijs Weterings 67c1a806e6 Flow strictify xplat/js/react-native-github where possible (#41051)
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
2023-10-18 05:36:33 -07:00

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,
];