Question from the React ⚛️ test

Write a React component that renders a list of numbers

Archived

What will this component display?

const ComponentA=({value})=><div>{value + 1}</div>;

const MyComponent=()=>{
    const ComponentB=<ComponentA value={1}/>
    return(
       <>
           <ComponentA value={- 1}/>
           <ComponentB/>
       </>
    );
};
Author: Vincent CotroStatus: Archived(New question!)Question passed 859 times
1
Community Evaluations
developer avatar
Enguerran
14/10/2023
2 réponses sont les mêmes. Personnellement, j'ai indiqué que la syntaxe n'était pas bonne, ça implique que ça ne fonctionne pas (mais il fallait également le cocher).