import { storiesOf } from '@storybook/react'; import * as React from 'react'; import { useKeyPress } from '../src'; import { CenterStory } from './util/CenterStory'; import ShowDocs from './util/ShowDocs'; const keys = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0']; const Demo = () => { const states: boolean[] = []; for (const key of keys) { // eslint-disable-next-line react-hooks/rules-of-hooks states.push(useKeyPress(key)[0]); } return (
Try pressing numbers
{states.reduce( (s, pressed, index) => s + (pressed ? (s ? ' + ' : '') + keys[index] : ''), '' )}
); }; storiesOf('Sensors/useKeyPress', module) .add('Docs', () => ) .add('Demo', () => );