Files
xyflow/examples/nextjs/pages/UseKeyPress/index.tsx
T

13 lines
251 B
TypeScript

import React from 'react';
import { useKeyPress } from '@react-flow/core';
const UseKeyPressComponent = () => {
const metaPressed = useKeyPress(['Meta']);
console.log({ metaPressed });
return <div />;
};
export default UseKeyPressComponent;