astro/examples/framework-preact
Nate Moore 7063c04dec
Restructure examples (#568)
* rename kitchen sink, pull out react example

* split out the rest of the examples

* align versions

* chore: rename examples

* chore: normalize gitignore

* chore: update package versions

* chore: move framework examples to `framework` namespace

* docs: add README to examples

Co-authored-by: Austin Crim <crim.austin@principal.com>
2021-06-28 10:46:10 -05:00
..
src Restructure examples (#568) 2021-06-28 10:46:10 -05:00
.gitignore Restructure examples (#568) 2021-06-28 10:46:10 -05:00
.npmrc Restructure examples (#568) 2021-06-28 10:46:10 -05:00
package.json Restructure examples (#568) 2021-06-28 10:46:10 -05:00
README.md Restructure examples (#568) 2021-06-28 10:46:10 -05:00

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.