7063c04dec
* 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> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
.npmrc | ||
package.json | ||
README.md |
Using Preact with Astro
This example showcases Astro's built-in support for multiple frameworks (React, Preact, Svelte, and Vue (v3.x
)).
No configuration is needed to enable these frameworks—just start writing components in src/components
.
Note
: If used, components must include a JSX factory (ex.
import React from "react"
,import { h } from "preact"
). Astro is unable to determine which framework is used without having the JSX factory in scope.