const Hoge:React.FC = ():JSX.Element => { // ... // onPaste const handlePaste = (e: React.ClipboardEvent<HTMLDivElement>) => { // クリップボードの中身を取得 const text = e.clipboardData.getData("text/plain"); // キャレットの位置取得して貼り付け // ref: https://developer.mozilla.org/ja/docs/Web/API/Element/paste_event const selection = window.getSelection(); if (!selection || !selection.rangeCount) throw new Error("何かおかしい"); s