认真豌豆

文章
4
资源
0
加入时间
2年10月24天

hooks的基本结构

hooks写法的基本结构import React, { useState, useEffect, Fragment } from 'react';export default ( props: { children: React.Component[]; location: Location }) => {//或 const App = (Props: any) => { const [count, setCount] = useState(0); // stat