摘要: 注释 1 import React from "react"; 2 3 class App extends React.Component { 4 render() { 5 return ( 6 <div> 7 {/* 注释 */} 8 </div> 9 ) 10 } 11 } 12 13 expo 阅读全文
posted @ 2021-11-25 23:27 霸哥yyds 阅读(430) 评论(0) 推荐(0)
摘要: 1 import React from "react"; 2 3 class App extends React.Component { 4 constructor(props) { 5 super(props); 6 this.state = { 7 count: 1 8 } 9 } 10 ren 阅读全文
posted @ 2021-11-25 21:15 霸哥yyds 阅读(38) 评论(0) 推荐(0)