No curso de React dado pelo instrutor Alberto ele usava isso:
const TableHead = () => {
return (
<thead>
<tr>
<th>Autores</th>
<th>Livros</th>
<th>Preços</th>
<th>Remover</th>
</tr>
</thead>
);
}
Assim:
class TableHead extends Component {
return (
<thead>
<tr>
<th>Autores</th>
<th>Livros</th>
<th>Preços</th>
<th>Remover</th>
</tr>
</thead>
);
}
Qual a diferença entre as duas versões?