mirror of
https://github.com/edufeed-org/educards.git
synced 2025-12-07 23:34:34 +00:00
9 lines
207 B
Svelte
9 lines
207 B
Svelte
<script>
|
|
import Board from '$lib/components/Board.svelte';
|
|
import { currentBoardAddress } from '$lib/db.js';
|
|
export let data;
|
|
|
|
$currentBoardAddress = data.id;
|
|
</script>
|
|
|
|
<Board boardAddress={data.id} />
|