Posts by Alqadiano G • 1 point
2 posts
-
0
votes1
answer16
viewsA: 255 error while running NPX
Roda sudo npm ERR! sudo chown -R 1001:1001 "/home/prihscapin/. npm" if it doesn’t work try as well: sudo npx create-React-app my-app. Or sudo su and then npx.
reactanswered Alqadiano G 1 -
-1
votes2
answers27
viewsA: Conditional returning error in Reactjs
Try that code: export default App; import React, { useState } from "react"; function App() { const [versao, setVersao] = useState(0); function alteraVersao() { setVersao(versao + 1); } return ( {…