mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
e4fe7c0d02
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
.npmrc | ||
package.json | ||
README.md |
Using Preact with Astro
This example showcases Astro's built-in support for Preact.
No configuration is needed to enable Preact support—just start writing Preact components in src/components
.
Note
: If used, components must include the JSX factory (ex.
import { h } from "preact"
). Astro is unable to determine which framework is used without having the JSX factory in scope.