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.
15 lines
413 B
15 lines
413 B
7 months ago
|
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>
|
||
|
)
|
||
|
}
|