mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
chore: format files with Prettier 3
This commit is contained in:
parent
0048796b0b
commit
93469fd893
391 changed files with 3725 additions and 3785 deletions
|
@ -7,17 +7,19 @@
|
|||
{ href: "/reports/2019", text: "2019" },
|
||||
];
|
||||
|
||||
import { Row, Column, Breadcrumb, BreadcrumbItem } from "carbon-components-svelte";
|
||||
import {
|
||||
Row,
|
||||
Column,
|
||||
Breadcrumb,
|
||||
BreadcrumbItem,
|
||||
} from "carbon-components-svelte";
|
||||
</script>
|
||||
|
||||
<Row>
|
||||
<Column>
|
||||
<Breadcrumb>
|
||||
{#each items as item, i}
|
||||
<BreadcrumbItem
|
||||
href="{item.href}"
|
||||
isCurrentPage="{i === items.length - 1}"
|
||||
>
|
||||
<BreadcrumbItem href={item.href} isCurrentPage={i === items.length - 1}>
|
||||
{item.text}
|
||||
</BreadcrumbItem>
|
||||
{/each}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue