import React, { useState } from 'react'; import { TabView, TabPanel } from 'primereact/tabview'; export default function TabProgresifitas() { const scrollableTabs = Array.from({ length: 50 }, (_, i) => ({ title: `Tab ${i + 1}`, content: `Tab ${i + 1} Content` })) return (