| 10 | import React from "react" |
| 11 | |
| 12 | interface ArrayBreadProps { |
| 13 | items: { label: string; link: string }[] |
| 14 | locale?: string |
| 15 | } |
| 16 | |
| 17 | export default async function ArrayBread({ items, locale }: ArrayBreadProps) { |
| 18 | const { t } = await initTranslations(locale, ["docs"]) |
nothing calls this directly
no outgoing calls
no test coverage detected