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.
|
|
|
import React, { useState } from "react"
|
|
|
|
import { TabView, TabPanel } from "primereact/tabview"
|
|
|
|
// import Identifikasi from "./componentProgresifitas/Identifikasi"
|
|
|
|
import Pembayaran from "./componentProgresifitas/Pembayaran"
|
|
|
|
import Identifikasi from "./componentProgresifitas/Identifikasi"
|
|
|
|
import PayComp from "./componentProgresifitas/PayComp"
|
|
|
|
import Sof from "./componentProgresifitas/Sof"
|
|
|
|
|
|
|
|
export default function TabProgresifitas({ dataSend }) {
|
|
|
|
return (
|
|
|
|
<div className="card">
|
|
|
|
<TabView>
|
|
|
|
<TabPanel id="tab_1" header="Identifikasi">
|
|
|
|
<Identifikasi dataSend={dataSend} />
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel id="tab_2" header="Pembayaran">
|
|
|
|
<Pembayaran dataSend={dataSend} />
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel id="tab_3" header="Payment Compliance">
|
|
|
|
<PayComp dataSend={dataSend} />
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel id="tab_4" header="Strength Of Figure">
|
|
|
|
<div style={{ minHeight: "300px" }}>
|
|
|
|
<Sof dataSend={dataSend} />
|
|
|
|
</div>
|
|
|
|
</TabPanel>
|
|
|
|
|
|
|
|
<TabPanel id="tab_5" header="Jenis/Status WP"></TabPanel>
|
|
|
|
|
|
|
|
<TabPanel id="tab_5" header="Pengampu"></TabPanel>
|
|
|
|
<TabPanel id="tab_6" header="KLU"></TabPanel>
|
|
|
|
</TabView>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|