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