Concept Flow - svelte:body for body events
Component mounts
Attach event listener to <body>
User triggers event on body
Event handler runs
Update component state if needed
Component re-renders
Component unmounts
Remove event listener from <body>
This flow shows how Svelte attaches an event listener to the document body using <svelte:body>, handles events, updates state, and cleans up on unmount.