svelte-notifications
svelte-notifications copied to clipboard
How to use with Sveltekit?
The example shows
import App from './App.svelte';
...
<Notifications>
<App />
</Notifications>
But that's not compatible with Sveltekit, I don't think?
For use in SvelteKit, it must be placed in the first layout as shown below:
├───src
│ └── routes
│ ├── +layout.svelte
│ └── +page.svelte
/* +layout.svelte */
<script lang="ts">
import Notifications from 'svelte-notifications';
</script>
<Notifications>
<slot />
</Notifications>