aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/views/HomeView.vue
blob: 09d319e6f44c103f1a626fbf6902ed4d00291a06 (plain)
1
2
3
4
5
6
7
8
9
10
<script setup lang="ts">
import type TetrisBoard from '../components/Board/TetrisBoard.vue';

</script>

<template>
  <main>
    <TetrisBoard></TetrisBoard>
  </main>
</template>