onclick, not click

This commit is contained in:
Chris Wanstrath 2025-12-12 12:06:36 -08:00
parent feb30369cf
commit 80b25b1c88

View File

@ -6,6 +6,6 @@ fe(function test() {
export default () => ( export default () => (
<section> <section>
<a href="#" click="test()">test</a> <a href="#" onclick="test()">test</a>
</section> </section>
) )