Très facile
Que va afficher ce composant ?
const MyComponent = () => {
const [index, setIndex] = useState(1);
useEffect(() => {
setIndex(2);
}, []);
return <div>{index}</div>;
};
Auteur: Vincent CotroStatut : PubliéeQuestion passée 3248 fois
Modifier
7
Évaluations de la communauté
Ambiguë
Auteur anonyme15/08/2024
The component will display 1 initially, and then call useEffect which will update the state and then 2 is displayed, so I think the question is ambiguous, it should ask what will it show last?
Questions similairesPlus de questions sur React
23
Écrire l'équivalent non-JSX du code suivant :19
Écrire le code manquant pour afficher les enfants du composant UserProfile.13
Écrire un composant React en tant que fonction11
Appeler une fonction au premier rendu d'un composant React9
Enregistrer l'état utilisé pour afficher la page sélectionnée dans un composant React.