Why is this an issue?

The accesskey attribute, despite its potential utility, is fraught with numerous issues that limit its effectiveness and usability:

Given these concerns, it is generally recommended to avoid using accesskeys.

function div() {
    return <div accessKey="h" />;
}

Do not use accesskeys at all.

function div() {
    return <div />;
}

Resources

Documentation