mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-04-19 08:51:03 +00:00
20 lines
383 B
Svelte
20 lines
383 B
Svelte
|
<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>
|