structure for summary and mins left to practice today

main
Matt Huntington 3 years ago
parent 74538d7f0d
commit 28f50a7e93

@ -1,12 +1,16 @@
<script setup lang="ts"> <script setup lang="ts">
import Summary from './components/summary.vue'
import MinsLeftToPracticeToday from './components/mins_left_to_practice_today.vue'
</script> </script>
<template> <template>
<header> <header>
<h1>Practice Tracker</h1> <h1>Practice Tracker</h1>
</header> </header>
<main> <main>
</main> <Summary/>
<MinsLeftToPracticeToday/>
</main>
</template> </template>
<style scoped> <style scoped>

@ -0,0 +1,9 @@
<script setup lang="ts">
</script>
<template>
<h2>Mins Left to Practice Today</h2>
</template>
<style scoped>
</style>

@ -0,0 +1,9 @@
<script setup lang="ts">
</script>
<template>
<h2>Summary</h2>
</template>
<style scoped>
</style>
Loading…
Cancel
Save