Created
January 9, 2024 06:05
-
-
Save hyunbinseo/2b5944071cd8d37e8b0a7ac0fa2e4b2a to your computer and use it in GitHub Desktop.
Svelte Syntax Highlighting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$: if (browser && data) { | |
chart.ref?.updateSeries(data.series); | |
} | |
</script> | |
<p>Hello, World</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
$: if (browser && data) { | |
chart.ref?.updateSeries(data.series); | |
} | |
</script> | |
<p>Hello, World</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment