V
V
Vadim Semennikov2019-06-14 15:16:05
JavaScript
Vadim Semennikov, 2019-06-14 15:16:05

How to display products from json in React?

Hello! tell me, please, how to implement this: The catalog of all products should be taken from a json file
Thank you

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Spirin, 2019-06-14
@VadimRosh

For example like this:

import React from 'react';
import data from './products.json';

const List = () => (
  <ul>
    {data.map(product => (
      <li key={product.id}>{product.title}</li>
    )}
  </ul>
);

Lists and Keys

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question