This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8I8*8voRz-Z7yM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BreadcrumbType } from "@/types/BreadcrumbType"; | |
import Link from "next/link"; | |
export default function BreadcrumbComponent({ breadcrumbs }: { breadcrumbs: Array<BreadcrumbType> }) { | |
return ( | |
<div className="mb-4 lg:mb-7"> | |
<div className="flex items-center gap-1.5"> | |
{breadcrumbs.map((breadcrumb, index) => ( | |
<div className="flex" key={index}> | |
{breadcrumb.link ? ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"user_id": 20, | |
"courier": "jnt", | |
"courier_service": "EZ", | |
"ongkir": 47000, | |
"address_id": 27, | |
"total": 1647000, | |
"note": "", | |
"is_direct": false, | |
"weight": 10, |
OlderNewer