// 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 { root } from "@lynx-js/react";
import { VerticalScrollItem } from "../component/scrollItem.jsx";
import { StickyItem } from "./stickyItem.jsx";
const VerticalScrollContainer = () => {
return (
ScrollView Example
{Array.from({ length: 20 }).map((item, index) => {
if (index == 2) {
return ;
}
return ;
})}
);
};
export default VerticalScrollContainer;
root.render();