-3

ERROR in ./src/Product/ProductChart.js 11:0-28

Module not found: Error: Can't resolve '../db.json' in 'C:\Users\SH20330370\react-demo\src\Product'

i am getting error like this .

import db from '../db.json';

i tried to insert this but getting error which is above.
  • Does this answer your question? [Import JSON file in React](https://stackoverflow.com/questions/39686035/import-json-file-in-react) – the.marolie Mar 21 '23 at 18:24
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Mar 22 '23 at 06:45

1 Answers1

-1

Assuming your db.json file is in /src/Product/ folder.

Use this statement import db from './db.json';

Michael
  • 1
  • 1