export const data = [...] // array of itemsexport const randomNumGen = //Generator function that yields a random number between 0 and max each time. Refer to the image 1
export const data = [...] // array of itemsexport 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 './dataexport default function Component() {const cards = []//populate the cards array with the items in data. Refer to image 2return (<div>{cards}</div>)
import {data, randomNumGen} from './dataexport default function Component() {const cards = []//populate the cards array with the items in data. Refer to image 2return (<div>{cards}</div>)
The returns error/warning: Text Content did not match. Server: ... Client: ...