1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-18 00:28:16 +09:00
hotomoe/packages/frontend/src/pages/admin/overview.heatmap.vue

16 lines
270 B
Vue
Raw Normal View History

2022-12-27 09:47:54 +09:00
<template>
<div class="_panel" :class="$style.root">
<MkActiveUsersHeatmap/>
2022-12-27 09:47:54 +09:00
</div>
</template>
<script lang="ts" setup>
import MkActiveUsersHeatmap from '@/components/MkActiveUsersHeatmap.vue';
2022-12-27 09:47:54 +09:00
</script>
<style lang="scss" module>
.root {
padding: 20px;
}
</style>