mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
219 B
Svelte
10 lines
219 B
Svelte
<script lang="ts">
|
|
import { Heading, Section } from "../types";
|
|
</script>
|
|
|
|
<Section tag="div">
|
|
<Heading>Heading 1</Heading>
|
|
<Section level="{5}">
|
|
<Heading>Starts at Heading 5</Heading>
|
|
</Section>
|
|
</Section>
|