Answer the question
In order to leave comments, you need to log in
arrow-body-style eslint error?
I don’t quite understand what’s wrong , I tried different options, it doesn’t help, the last one:
{data.clients.map((value, index) => { // 68 line
return (
<Table.Cell key={index}>{value}</Table.Cell>
);
})}
Answer the question
In order to leave comments, you need to log in
{data.clients.map((value, index) => <Table.Cell key={index}>{value}</Table.Cell>)}
{data.clients.map((value, index) => (
<Table.Cell key={index}>{value}</Table.Cell>
))}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question