Forking of boards, better routing, lots of other stuff

This commit is contained in:
@s.roertgen 2025-04-15 15:11:21 +02:00
parent c4bde3e147
commit 08ad305cc2
7 changed files with 165 additions and 64 deletions

View file

@ -1,10 +1,10 @@
<script>
import Board from '$lib/components/Board.svelte';
import { currentBoardId } from '$lib/db.js';
import { currentBoardAddress } from '$lib/db.js';
export let data;
console.log('data.id', data.id);
$currentBoardId = data.id;
console.log(data.id);
$currentBoardAddress = data.id;
</script>
<Board boardId={data.id} />
<Board boardAddress={data.id} />