14 lines
413 B
14 lines
413 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="Penugasan"></TabPanel> |
|
<TabPanel id="tab_2" header="Aktifitas"></TabPanel> |
|
<TabPanel id="tab_3" header="Hasil"></TabPanel> |
|
</TabView> |
|
</div> |
|
) |
|
}
|
|
|