Can anyone suggest how I'd go about creating an ID-generating function in React?
So far I've tried to get this to work through an uuid npm package https://www.npmjs.com/package/uuid,
import uuidv4 from 'uuid'
helpIdGenerator {
const uuidv4 = require('uuid/v4')
}
But it doesn't seem to work.