summaryrefslogtreecommitdiff
path: root/examples/framework-multiple/src/components/PreactSFC.tsx
blob: 60d0fe83627187b24fd45501f9b940dd9fa818ef (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>
		</>
	);
}