j4pm/app/javascript/app.svelte

11 lines
110 B
Svelte
Raw Normal View History

2021-12-10 19:39:43 +00:00
<script>
export let name;
</script>
<style>
h1 {
color: #FF3E00;
}
</style>
<h1>Hello {name}!</h1>