astro/examples/framework-preact/README.md
Fred K. Schott 67ef02534f
update example readmes (#591)
* update example readmes

* Update README.md
2021-07-01 08:43:25 -04:00

563 B

Using Preact with Astro

npm init astro --template framework-preact

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.