summaryrefslogtreecommitdiff
path: root/packages/integrations/react/README.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-08-22 07:19:18 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-22 10:19:18 -0400
commit9f1881455a5c3a6457125dafbcd342be5c4de907 (patch)
tree967ccf17b7973ce6acacada687cbaaf7218804b6 /packages/integrations/react/README.md
parenta93e061cfb0779e41297f22002d6a446850acc93 (diff)
downloadastro-9f1881455a5c3a6457125dafbcd342be5c4de907.tar.gz
astro-9f1881455a5c3a6457125dafbcd342be5c4de907.tar.zst
astro-9f1881455a5c3a6457125dafbcd342be5c4de907.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/react/README.md')
-rw-r--r--packages/integrations/react/README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/integrations/react/README.md b/packages/integrations/react/README.md
index aca6eba7d..98eb252d3 100644
--- a/packages/integrations/react/README.md
+++ b/packages/integrations/react/README.md
@@ -83,16 +83,16 @@ export default defineConfig({
// Enable many frameworks to support all different kinds of components.
// No `include` is needed if you are only using a single JSX framework!
integrations: [
- preact({
- include: ['**/preact/*']
- }),
- react({
- include: ['**/react/*']
- }),
- solid({
- include: ['**/solid/*'],
- }),
- ]
+ preact({
+ include: ['**/preact/*'],
+ }),
+ react({
+ include: ['**/react/*'],
+ }),
+ solid({
+ include: ['**/solid/*'],
+ }),
+ ],
});
```