mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
67ef02534f
* update example readmes * Update README.md
556 B
556 B
Using React with Astro
npm init astro --template framework-react
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.