0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00
astro/examples/framework-multiple/src/components/PreactSFC.tsx
2021-07-21 23:11:40 +00:00

10 lines
206 B
TypeScript

/** @jsxImportSource preact */
/** a counter written in Preact */
export default function PreactSFC({ children }) {
return (
<>
<div className="counter">Hello from Preact!</div>
</>
);
}