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

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