aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/insult.svelte
blob: 61c17ecb421fb4c1aab5325dae67a8bdaded6e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
  export let insult
</script>

<article>
  <header>
		Eres un/a
  </header>
  <main>
    {insult}
  </main>
  <footer>
    <a href="/">Insulto nuevo.</a>
  </footer>
</article>