Files
component-party/content/4-component-composition/5-context/svelte4/App.svelte
2024-10-27 14:08:38 +01:00

17 lines
377 B
Svelte

<script>
import { setContext } from "svelte";
import UserProfile from "./UserProfile.svelte";
import createUserStore from "./createUserStore.js";
const userStore = createUserStore({
id: 1,
username: "unicorn42",
email: "unicorn42@example.com",
});
setContext("user", userStore);
</script>
<h1>Welcome back, {$userStore.username}</h1>
<UserProfile />