1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-04-19 08:51:03 +00:00

20 lines
383 B
Svelte
Raw Normal View History

2023-01-11 20:41:15 +01:00
<script>
import ObjectGrid from '../../components/objectgrid.svelte';
import CodeExample from '../../components/code-example.svelte';
export let collection;
</script>
<div class="stats">
<CodeExample code="db.stats()" />
<ObjectGrid data={collection.stats} />
</div>
<style>
.stats {
display: grid;
gap: 0.5rem;
grid-template: auto 1fr / 1fr;
}
</style>