react hooks 中的事件

html

import React,{ useState } from 'react'

const VrCornucopiaHome = () => {

    const bbbbb = () => {
        alert(1)
    }
    return (
      <button type="button" onClick={ () => bbbbb() }>知道了</button>
    )
    //写在return后无效
    const bbbbb = () => {
        alert(1)
    }
}    

 

export default VrCornucopiaHome

 

 

posted @ 2021-05-17 15:54  龙卷风吹毁停车场  阅读(238)  评论(0编辑  收藏  举报