LoginSignup
1
0

More than 1 year has passed since last update.

react-beautiful-dndでUnable to find draggable with idが出たときの対処法

Posted at

原因

React 18でReact.StrictModeを使っているため

index.js
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);

対処法

以下のようにReact.StrictModeを使わないようにする

index.js
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <>
    <App />
  </>
);

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0