mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
11 lines
345 B
Vue
11 lines
345 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>
|