import { ScrollView, View } from "react-native"; import stylesheet from "./stylesheet"; import { NCoreUIKitLocalize, NCoreUIKitTheme, PageContainer, Text } from "ncore-ui-kit"; const WebScrollbar = () => { const { colors } = NCoreUIKitTheme.useContext(); const { localize } = NCoreUIKitLocalize.useContext(); return {localize("webScrollbar-title")} {localize("webScrollbar-desc")} {Array.from({ length: 30 }).map((_, index) => {localize("webScrollbar-item")} {index + 1} )} ; }; export default WebScrollbar;