mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
17 lines
362 B
Vue
17 lines
362 B
Vue
<template>
|
|
<div class="mx-auto max-w-2xl w-full">
|
|
<TimelineScroller>
|
|
<Local />
|
|
</TimelineScroller>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
import Local from "~/components/timelines/local.vue";
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
|
|
|
definePageMeta({
|
|
layout: "app",
|
|
});
|
|
</script> |