11 lines
176 B
TypeScript
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>
|
|
) |