summaryrefslogtreecommitdiff
path: root/examples/framework-react/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-react/README.md')
-rw-r--r--examples/framework-react/README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/framework-react/README.md b/examples/framework-react/README.md
new file mode 100644
index 000000000..016cf0f21
--- /dev/null
+++ b/examples/framework-react/README.md
@@ -0,0 +1,7 @@
+# Using React with Astro
+
+This example showcases Astro's built-in support for [React](https://reactjs.org/).
+
+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](https://mariusschulz.com/blog/per-file-jsx-factories-in-typescript#what-is-a-jsx-factory) in scope.