carbon-components-svelte/tests/RecursiveList.test.svelte
2024-11-11 21:35:48 -08:00

32 lines
571 B
Svelte

<script lang="ts">
import { RecursiveList } from "carbon-components-svelte";
const nodes = [
{
text: "Item 1",
nodes: [
{
text: "Item 1a",
nodes: [{ html: "<h5>HTML content</h5>" }],
},
],
},
{
text: "Item 2",
nodes: [
{
href: "https://svelte.dev/",
},
{
href: "https://svelte.dev/",
text: "Link with custom text",
},
],
},
{
text: "Item 3",
},
];
</script>
<RecursiveList type="ordered" {nodes} />