// Copyright 2025 The Lynx Authors. All rights reserved. // Licensed under the Apache License Version 2.0 that can be found in the // LICENSE file in the root directory of this source tree. import { VerticalScrollItem } from "../component/scrollItem.jsx"; import { HorizontalScrollItem } from "../component/scrollItem.jsx"; export const App = () => { return ( Horizontal ScrollView Example {Array.from({ length: 20 }).map((item, index) => )} Vertical ScrollView Example {Array.from({ length: 20 }).map((item, index) => )} ); };