python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to turn off rerender after dowload the file
i want to turn off rerender component after download the file. How can I do this? I want to do this because it generates unnecessary API queries.
<a className="folder-link" href={item.sas...
Adam Nowicki
Votes: 0
Answers: 1
How fix two pages render in ternary navigation return
I'm trying to implement a persistent login session in react with firebase, it works kind of good, but i have a problem with the initial state and the re-render of the component, the initial state of c...
Dante Allievi
Votes: 0
Answers: 1
useEffect keeps fetching data and re-rendering the component
I just started building projects this week and fresh outta tutorial hell so please go easy, my code might be rough too.
I'm trying to render a "randomAdvice" in the component on button click...
ehiz omokhomion
Votes: 0
Answers: 1
change in state does not re-renders the component
const [list, setList] = useState([]);
useEffect(() => {
const getData = async () => {
let storeList = [];
for (let i = 0; i<50; i++) {
try { ...
Ketul s
Votes: 0
Answers: 1