mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
10 lines
206 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|