carbon-components-svelte/tests/ContentSwitcher/ContentSwitcher.selectedIndex.test.svelte
2025-03-02 14:41:57 -08:00

11 lines
265 B
Svelte

<script lang="ts">
import { ContentSwitcher, Switch } from "carbon-components-svelte";
export let selectedIndex = 1;
</script>
<ContentSwitcher {selectedIndex}>
<Switch text="First" />
<Switch text="Second" />
<Switch text="Third" />
</ContentSwitcher>