11. 函数式组件

This commit is contained in:
shikong 2024-10-27 20:25:40 +08:00
parent d8892820e6
commit a00d0611de
Signed by: Shikong
GPG Key ID: BD85FF18B373C341

View File

@ -1,4 +1,12 @@
import React, {useEffect, useState} from "react";
// 函数式组件
// 1. 没有生命周期
// 2. 没有 this
// 3. 使用各种 Hook 完成操作
// 4. 函数式组件本身相当于 render 函数
// 5. 函数式组件的第一个参数为 props
export default function SonComponent2(props= {
msg:"",
changeMsg:(_)=>{}