mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
11 lines
265 B
Svelte
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>
|