42a6ceb587
* chore: move examples to `@example/`, normalize `package.json` * chore: update lockfile * chore: add empty changeset |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
.npmrc | ||
package.json | ||
README.md |
Using React with Astro
This example showcases Astro's built-in support for React.
No configuration is needed to enable React support—just start writing React components in src/components
.
Note
: If used, components must include the JSX factory (ex.
import React from "react"
). Astro is unable to determine which framework is used without having the JSX factory in scope.