mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
16 lines
371 B
Vue
16 lines
371 B
Vue
<script setup lang="ts">
|
|
import AppLayout from '@/Layouts/AppLayout.vue';
|
|
import ReportingOverview from "@/Components/Common/Reporting/ReportingOverview.vue";
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<AppLayout
|
|
title="Reporting"
|
|
data-testid="reporting_view"
|
|
class="overflow-hidden">
|
|
<ReportingOverview></ReportingOverview>
|
|
</AppLayout>
|
|
</template>
|