aboutsummaryrefslogtreecommitdiff
path: root/examples/framework-multiple/src/components/PreactSFC.tsx
blob: a92e258f83dc03fe5afdd9eeb120e7f21aa87ca7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/** @jsxImportSource preact */

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