This commit is contained in:
2026-02-16 18:18:21 +01:00
parent c200847c17
commit 5d148db4da
17 changed files with 399 additions and 15 deletions

View File

@@ -0,0 +1,27 @@
<script setup lang="ts">
import RecentWhiteboardsList from './RecentWhiteboardsList.vue'
</script>
<template>
<div class="whiteboards-panel card border-secondary shadow-sm h-100">
<div class="card-header bg-light text-dark">
Recent Whiteboards
</div>
<div class="card-body p-0 overflow-auto">
<RecentWhiteboardsList />
</div>
</div>
</template>
<style scoped>
.whiteboards-panel {
max-height: 500px;
width: 100%;
}
</style>