mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 17:59:07 +01:00
17 lines
220 B
Vue
17 lines
220 B
Vue
|
<template>
|
||
|
<div>
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import type { InstanceItem } from 'types/instances-info';
|
||
|
|
||
|
defineProps<{
|
||
|
instance: InstanceItem;
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|