lemmy-phpbb-sveltejs/src/App.svelte
2019-03-18 10:56:06 -04:00

11 lines
105 B
Svelte

<script>
export let name;
</script>
<style>
h1 {
color: purple;
}
</style>
<h1>Hello {name}!</h1>