cd508183 by Adam Heath

In ReduxIsland, pass the props through to the child component.

1 parent 06c2a1e8
......@@ -4,4 +4,4 @@ import "use-sync-external-store/with-selector.js"
const { props, locals: { store } } = Astro
---
{await Astro.slots.render('default', [{ASTRO_STORE: store}])}
{await Astro.slots.render('default', [{...props, ASTRO_STORE: store}])}
......