前端学习笔记202309学习笔记第九十一天-闭包22

const {useState}=React

function App(){
    const [title,setTitle]=useState("this is a title")
    const [content,setContent]=useState("this is a content")
    return (
        <div>
            <h1>{title}</h1>
            <button onClick={()=>setTitle("这是标题")}>set title</button>
            <p>{content}</p>
            <button onClick={()=>setContent("这是内容")}>set content</button>
        </div>
    )
}

const root=ReactDOM.createRoot(document.querySelector('#app'));
root.render(<App/>)

运行结果

 

posted @ 2023-09-16 20:32  前端导师歌谣  阅读(14)  评论(0)    收藏  举报  来源