Files
FitTrackee/fittrackee_client/src/views/NotFoundView.vue
2021-11-10 21:24:33 +01:00

10 lines
174 B
Vue

<template>
<div class="not-found view">
<NotFound />
</div>
</template>
<script setup lang="ts">
import NotFound from '@/components/Common/NotFound.vue'
</script>