該当コード
js
1import { useLocation } from 'react-router-dom'; 2
出るエラー
Attempted import error: 'useLocation' is not exported from 'react-router-dom'.
試したこと
bash
1yarn add react-router-dom@latest 2 3```をしています 4 5また、react-router-dom内でreact-routerからuseLocationをimportしていたので、 6 7```js 8import { useLocation } from 'react-router'; 9
としましたが同様のエラーが出ます
同じく
bash
1yarn add react-router@latest 2
してます
vscode内では参照できています
yarn startやyarn install繰り返しました
なぜでしょう…?
あなたの回答
tips
プレビュー