/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/examples/IntersectionObserver/IntersectionObserverIndex.js
37 строк
2 KB
Luna Wei
Gate with feature flag for canary (#54454)
13 ноя 2025, 20:42
13 ноя 2025, 20:42
8ccaf00
Код
Авторство
О чём код?
/** * 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 */ import type {RNTesterModuleExample} from '../../types/RNTesterTypes'; import * as IntersectionObserverBenchmark from './IntersectionObserverBenchmark'; import * as IntersectionObserverClippingParent from './IntersectionObserverClippingParent'; import * as IntersectionObserverClippingRoot from './IntersectionObserverClippingRoot'; import * as IntersectionObserverExplicitRoot from './IntersectionObserverExplicitRoot'; import * as IntersectionObserverExplicitRootScroll from './IntersectionObserverExplicitRootScroll'; import * as IntersectionObserverMDNExample from './IntersectionObserverMDNExample'; import * as IntersectionObserverRootThreshold from './IntersectionObserverRootThreshold'; export const framework = 'React'; export const title = 'IntersectionObserver'; export const category = 'UI'; export const documentationURL = 'https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API'; export const description = 'API to detect paint times for elements and changes in their intersections with other elements.'; export const showIndividualExamples = true; export const examples: Array<RNTesterModuleExample> = [ IntersectionObserverMDNExample, IntersectionObserverBenchmark, IntersectionObserverRootThreshold, IntersectionObserverExplicitRoot, IntersectionObserverExplicitRootScroll, IntersectionObserverClippingParent, IntersectionObserverClippingRoot, ];