1
0
Fork 0
mirror of synced 2024-06-01 10:09:48 +12:00
budibase/packages/frontend-core/src/components/grid/layout/RowCount.svelte
2023-04-20 08:17:07 +01:00

10 lines
162 B
Svelte

<script>
import { getContext } from "svelte"
const { rows } = getContext("grid")
</script>
<div>
{$rows.length} row{$rows.length === 1 ? "" : "s"}
</div>