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" ...@@ -4,4 +4,4 @@ import "use-sync-external-store/with-selector.js"
4 4
5 const { props, locals: { store } } = Astro 5 const { props, locals: { store } } = Astro
6 --- 6 ---
7 {await Astro.slots.render('default', [{ASTRO_STORE: store}])} 7 {await Astro.slots.render('default', [{...props, ASTRO_STORE: store}])}
......