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

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>