Skip to content

Instantly share code, notes, and snippets.

@hyunbinseo
Created January 9, 2024 06:05
Show Gist options
  • Save hyunbinseo/2b5944071cd8d37e8b0a7ac0fa2e4b2a to your computer and use it in GitHub Desktop.
Save hyunbinseo/2b5944071cd8d37e8b0a7ac0fa2e4b2a to your computer and use it in GitHub Desktop.
Svelte Syntax Highlighting
<script>
$: if (browser && data) {
chart.ref?.updateSeries(data.series);
}
</script>
<p>Hello, World</p>
<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