You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
practice-tracker-frontend/src/App.vue

18 lines
324 B

<script setup lang="ts">
import Summary from './components/summary.vue'
import MinsLeftToPracticeToday from './components/mins_left_to_practice_today.vue'
</script>
<template>
<header>
<h1>Practice Tracker</h1>
</header>
<main>
<Summary/>
<MinsLeftToPracticeToday/>
</main>
</template>
<style scoped>
</style>