summaryrefslogtreecommitdiff
path: root/src/App.vue
blob: 2b5bdc2726bcc02a4771b1cc8593b6fdfb170e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <h1>Wördle</h1>
  <Keyboard />
</template>

<script setup lang="ts">
import Keyboard from "@/components/Keyboard.vue";

let props = defineProps<{
  riddle: string;
  trial: string;
}>();
</script>

<style scoped>
</style>