summaryrefslogtreecommitdiff
path: root/.changeset/yellow-snakes-jam.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-08-18 07:31:52 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-18 10:31:52 -0400
commit5c190d06f1cec6a4ecd2a1fbfc77c498c91b9d2c (patch)
treef97b8bda8fb2433248e5c179b449ca1520eab15e /.changeset/yellow-snakes-jam.md
parent821918bc0ccf8a706da2194456c625d55dee989c (diff)
downloadastro-5c190d06f1cec6a4ecd2a1fbfc77c498c91b9d2c.tar.gz
astro-5c190d06f1cec6a4ecd2a1fbfc77c498c91b9d2c.tar.zst
astro-5c190d06f1cec6a4ecd2a1fbfc77c498c91b9d2c.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/yellow-snakes-jam.md')
-rw-r--r--.changeset/yellow-snakes-jam.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/.changeset/yellow-snakes-jam.md b/.changeset/yellow-snakes-jam.md
deleted file mode 100644
index 87c4d1da7..000000000
--- a/.changeset/yellow-snakes-jam.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-'@astrojs/react': minor
----
-
-Optionally parse React slots as React children.
-
-This adds a new configuration option for the React integration `experimentalReactChildren`:
-
-```js
-export default {
- integrations: [
- react({
- experimentalReactChildren: true,
- })
- ]
-}
-```
-
-With this enabled, children passed to React from Astro components via the default slot are parsed as React components.
-
-This enables better compatibility with certain React components which manipulate their children.