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.
 
 
 
 
 
 

14 lines
451 B

import React, { useState } from "react"
import { TabView, TabPanel } from "primereact/tabview"
export default function TabPenugasan({ dataSend }) {
return (
<div className="card">
<TabView>
<TabPanel id="tab_1" header="Identifikasi Lapangan (KPDL)"></TabPanel>
<TabPanel id="tab_2" header="Aktifitas pasca identifikasi"></TabPanel>
<TabPanel id="tab_3" header="Hasil"></TabPanel>
</TabView>
</div>
)
}