I want to detect key press on whole website that is to listen keypress globally. I tried adding onKeyDown property on div in react but it doesn't catch global event
<div onKeyPress={(e) => console.log(e)}>
<MainLayout visualizerMode={true} />
</div>