mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
10 lines
159 B
Svelte
10 lines
159 B
Svelte
<script>
|
|
import Link from "./Link.svelte";
|
|
|
|
$: ref = null;
|
|
$: ref && console.log(ref);
|
|
</script>
|
|
|
|
<div>
|
|
<Link {...$$props} bind:ref>Link</Link>
|
|
</div>
|