WARNING: Text content did not match...

/* data.ts /
export const data = [...] // array of items
export const randomNumGen = //Generator function that yields a random number between 0 and max each time. Refer to the image 1


/
component.tsx */
import {data, randomNumGen} from './data
export default function Component() {
const cards = []
//populate the cards array with the items in data. Refer to image 2
return (<div>{cards}</div>)


The returns error/warning: Text Content did not match. Server: ... Client: ...

How do I fix it?
image.png
image.png
Was this page helpful?