Replies: 1 comment
-
Hey, please read the documentation and the readme of the project it will fix your issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
error `Module not found: Can't resolve 'faker'
1 | import React from 'react'
Import trace for requested module:
./components/Feed.js
./pages/index.tsx
code : here
import React from 'react'import faker from 'faker'
import { useEffect } from 'react'
function Stories() {
useEffect(() => {
const suggestions = [...Array(20)].map((_, i) => ({
...faker.helpers.contextualCard(),
id: i,
}));
console.log(suggestions);
}, [])
return (
)
}
`
Beta Was this translation helpful? Give feedback.
All reactions