Files
react-native/packages/rn-tester/js/examples/SectionList/SectionListIndex.js
T
Luna Wei c06d8d01ca Support 3 levels of navigation
Summary: Changelog: [Internal] RNTester to support 3 levels of navigation

Reviewed By: kacieb

Differential Revision: D29481463

fbshipit-source-id: e48281cce7fccd7096446c5f0f5583f2588b5028
2021-07-01 14:35:30 -07:00

35 lines
1.0 KiB
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 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,
];