mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
252 B
Svelte
10 lines
252 B
Svelte
<script lang="ts">
|
|
import { ContentSwitcher, Switch } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<ContentSwitcher>
|
|
<Switch>
|
|
<div data-testid="custom-content">Custom Content</div>
|
|
</Switch>
|
|
<Switch text="Regular Text" />
|
|
</ContentSwitcher>
|