blob: 27c0c688d2be39b8a0232c4dfabd79559a4ba768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script lang="ts">
export let name: string;
</script>
<main>
<h1>Hello from {name}!</h1>
<h2>Your token is {window.token}.</h2>
</main>
<style>
h1 {
font-size: 4em;
}
</style>
|