mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
153 B
Svelte
10 lines
153 B
Svelte
<script lang="ts">
|
|
import { CodeSnippet } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<CodeSnippet
|
|
type="multi"
|
|
code={`node -v
|
|
npm -v
|
|
yarn -v`}
|
|
/>
|