Skip to content

Commit f96f65b

Browse files
committed
update html
1 parent e65eace commit f96f65b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

redux/demo2/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h1>
8282
})
8383
case 'SETNAME2':
8484
return {
85-
name: "Windiest"
85+
name: "wscats"
8686
}
8787
default:
8888
return state

事件委托/事件委托.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
constructor(props){
1616
super(props);
1717
this.state = {
18-
arr: ["Wscats","Oaoafly","Windiest"]
18+
arr: ["Wscats","Oaoafly","wscats"]
1919
} // 给组件添加状态
2020
}
2121
render() {

组件/类式组件和函数组件组合.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
return (
2222
<div>
2323
<Wscats name="Oaoafly" />
24-
<Wscats name="Windiest" />
24+
<Wscats name="wscats" />
2525
</div>
2626
);
2727
}

组件/组件添加状态.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2>现在时间是:{this.state.date.toLocaleTimeString()}</h2>
3030
return (
3131
<div>
3232
<Wscats name="Oaoafly" />
33-
<Wscats name="Windiest" />
33+
<Wscats name="wscats" />
3434
</div>
3535
);
3636
}

组件/选项卡.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ <h1> {this.props.name}</h1>
6868
},{
6969
name: "wscats"
7070
},{
71-
name:"windiest"
71+
name:"wscats"
7272
}],
7373
idx: 0,
7474
history:[0]

0 commit comments

Comments
 (0)