hype/examples/ssr/src/pages/js-test.tsx
2026-01-16 14:36:02 -08:00

11 lines
176 B
TypeScript

import { frontend as fe } from 'hype'
fe(function test() {
alert('ding dong')
})
export default () => (
<section>
<a href="#" onclick="test()">test</a>
</section>
)