2023-07-27 00:31:52 -05:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-12-26 23:31:24 -06:00
|
|
|
<template>
|
2022-12-27 23:13:47 -06:00
|
|
|
<div class="_panel" :class="$style.root">
|
|
|
|
<MkRetentionHeatmap/>
|
2022-12-26 23:31:24 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-12-27 23:13:47 -06:00
|
|
|
import MkRetentionHeatmap from '@/components/MkRetentionHeatmap.vue';
|
2022-12-26 23:31:24 -06:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2022-12-27 23:13:47 -06:00
|
|
|
padding: 20px;
|
2022-12-26 23:31:24 -06:00
|
|
|
}
|
|
|
|
</style>
|