import { writable } from 'svelte/store'; // Cross-component tab navigation — App.svelte owns the actual tab index // locally (not a store), so this is a one-shot request channel: set the // tab's display name here, App.svelte jumps to it and clears the request. export const requestedTab = writable(null);