python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How does React render DOM without refreshing page?
Before I met React, When I made changes on the browser using Javascript I had to refresh page manuelly(or with live server) to see changes. But react does that without refreshing page.
I'm trying to l...
Apoleytaa
Votes: 0
Answers: 1
ReactJS useEffect memory leak with chained request
I am making an axios.post request within a useEffect statement. The process is not setting any state, but I am get an Can't perform a React state update on an unmounted component. This is a no-op, but...
reactFullStackDeveloper
Votes: 0
Answers: 1
React custom hook returning array and utilize the same in App component
I have my App component defined as below;
function App() {
const [state1, setState1] = useState({});
const [state2, setState2] = useState({});
const [isApiCallDone, setIsApiCallDone] = use...
copenndthagen
Votes: 0
Answers: 2
React Native TextInput that Accepts a specific format only
I need a textInput component for zip code that accepts only numeric values and satisfies the following format.
ZIP must be in xxxxx-xxxx or xxxxx format.
Note: character count should not exceed 10 (in...
Uthkarsh Cheekati
Votes: 0
Answers: 1