In React (framework di Facebook), devo rendere un elemento etichetta associato a un input di testo usando l' for
attributo standard .
ad esempio, viene utilizzato il seguente JSX:
<label for="test">Test</label>
<input type="text" id="test" />
Tuttavia, questo produce HTML privo for
dell'attributo richiesto (e standard) :
<label>Test</label>
<input type="text" id="test">
Che cosa sto facendo di sbagliato?