diff options
Diffstat (limited to 'packages/integrations/react')
-rw-r--r-- | packages/integrations/react/README.md | 6 | ||||
-rw-r--r-- | packages/integrations/react/package.json | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/react/README.md b/packages/integrations/react/README.md index e610faecd..9beebd056 100644 --- a/packages/integrations/react/README.md +++ b/packages/integrations/react/README.md @@ -29,7 +29,7 @@ If you run into any hiccups, [feel free to log an issue on our GitHub](https://g First, install the `@astrojs/react` integration like so: -``` +```sh npm install @astrojs/react ``` @@ -41,7 +41,7 @@ npm install react react-dom Now, apply this integration to your `astro.config.*` file using the `integrations` property: -__astro.config.mjs__ +__`astro.config.mjs`__ ```js import react from '@astrojs/react'; @@ -62,4 +62,4 @@ To use your first React component in Astro, head to our [UI framework documentat Also check our [Astro Integration Documentation][astro-integration] for more on integrations. [astro-integration]: https://docs.astro.build/en/guides/integrations-guide/ -[astro-ui-frameworks]: https://docs.astro.build/en/core-concepts/framework-components/#using-framework-components
\ No newline at end of file +[astro-ui-frameworks]: https://docs.astro.build/en/core-concepts/framework-components/#using-framework-components diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 808a984a8..40f47c2b4 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -18,7 +18,7 @@ "react" ], "bugs": "https://github.com/withastro/astro/issues", - "homepage": "https://astro.build", + "homepage": "https://docs.astro.build/en/guides/integrations-guide/react/", "exports": { ".": "./dist/index.js", "./client.js": "./client.js", |