astro/packages/renderers/renderer-react
Drew Powers 17a0c5bf75 Try mocha/chai test runners (#1418)
* Try mocha/chai test runners

* Disable failing smoke test for now

Will revert when next can build docs

* Enable mocha in parallel mode

* Remove warning

* Update docs

* Fix Windows bug

* Fix internal imports

* Fix styles
2021-10-22 16:25:36 -06:00
..
CHANGELOG.md Version Packages (#1472) 2021-10-01 13:36:02 -04:00
client.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00
index.js [ci] yarn format 2021-07-21 23:11:40 +00:00
package.json Try mocha/chai test runners (#1418) 2021-10-22 16:25:36 -06:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Support PureComponent in the react renderer (#1467) 2021-10-01 11:25:17 -04:00
static-html.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00

@astrojs/renderer-react

This is a plugin for Astro apps that enables server-side rendering of React components.

Installation

Install @astrojs/renderer-react and then add it to your astro.config.mjs in the renderers property:

npm install @astrojs/renderer-react

astro.config.mjs

export default {
  // ...

  renderers: [
    // ...
    '@astrojs/renderer-react'
  ]
}

Documentation

Astro Renderer Documentation