blob: 7848124c2129105b488e8ea253c31e79046d1b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import { deleteAuth } from '@/core/utils/auth'
import Link from '../Link/Link'
import { useRouter } from 'next/router'
const NavbarUserDropdown = () => {
const router = useRouter()
const logout = () => {
deleteAuth()
router.push('/login')
}
return (
<div className='navbar-user-dropdown-wrapper'>
<div className='navbar-user-dropdown'>
<Link href='/my/quotations'>Daftar Quotation</Link>
<Link href='/my/transactions'>Daftar Transaksi</Link>
<Link href='/my/invoices'>Invoice & Faktur Pajak</Link>
<Link href='/my/wishlist'>Wishlist</Link>
<Link href='/my/address'>Daftar Alamat</Link>
<button type='button' onClick={logout}>
Keluar Akun
</button>
</div>
</div>
)
}
export default NavbarUserDropdown
|