I am trying functional components with hooks of react 16.7,there is an error:
src/components/Footer/index.js
function Footer() {
const [selectedTab, setSelectedTab] = useState('redTab');
const [hidden, setHidden] = useState(false);
const [fullScreen, setFullScreen] = useState(false);
//...
}
package.json
What should I do?

