blob: 514db663ab26fddcd132a60d280548a4a9eeb813 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div class="_panel" :class="$style.root">
<MkRetentionHeatmap/>
</div>
</template>
<script lang="ts" setup>
import MkRetentionHeatmap from '@/components/MkRetentionHeatmap.vue';
</script>
<style lang="scss" module>
.root {
padding: 20px;
}
</style>
|