You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
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 ( |
|
<div className="card"> |
|
<TabView scrollable onClick={(e) => { |
|
console.log(e) |
|
}} > |
|
|
|
<TabPanel id="1" header="Identifikasi" > |
|
|
|
</TabPanel> |
|
|
|
<TabPanel id="2" header="Pembayaran"> |
|
|
|
</TabPanel> |
|
<TabPanel id="3" header="Payment Compliant"> |
|
|
|
</TabPanel> |
|
<TabPanel id="4" header="Strength Of Figure"> |
|
|
|
</TabPanel> |
|
|
|
<TabPanel id="5" header="Jenis/Status WP"> |
|
|
|
</TabPanel> |
|
|
|
<TabPanel id="5" header="Pengampu"> |
|
|
|
</TabPanel> |
|
<TabPanel id="6" header="KLU"> |
|
|
|
</TabPanel> |
|
|
|
</TabView> |
|
</div> |
|
) |
|
} |