Skip to content

Instantly share code, notes, and snippets.

Created August 9, 2017 23:03
Show Gist options
  • Save anonymous/3ae1fefbef1a4fe1deb280a7654fa3c3 to your computer and use it in GitHub Desktop.
Save anonymous/3ae1fefbef1a4fe1deb280a7654fa3c3 to your computer and use it in GitHub Desktop.
Svelte component
<h1 class="hello-world">Hello {{name}}!</h1>
<!--
This is a Svelte component. Click the toggle
below right to see the generated code.
You can interact with this component via your
browser's console – try running the following:
app.set({ name: 'everybody' });
You can also update the data via the JSON
editor on this page.
-->
<style scoped>
.hello-world {
display: block;
}
@media only screen (min-width: 42em) {
.hello-world {
display: none;
}
}
</style>
{
"name": "world"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment