Hi, I wanted to know if I could use `object-hash` in something like this in React : ``` children.map((child, index) => ( <Component key={hash(`${index}-{child.name}`)} /> ) ``` And be sure that the key will always be unique and make possible to avoid the following problem : https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-array-index-key.md TYVM Sourouche