1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【react-router v7 エラー】Uncaught Error: A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>

Posted at

はじめに

今回はRouter設定を react-router v7 で実装しようとした時に遭遇したエラーについてです。

問題

エラーメッセージ
Uncaught Error: A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>
src/router/Router.tsx
import { Route, Routes } from "react-router";
import { Cards } from "../cards";
import { DynamicSegments } from "../DynamicSegments";

export const Router = () => {
  return (
    <>
      <Route path="/" element={<Cards />} />
      <Route path="/cards/:id" element={<DynamicSegments />} />
    </>
  );
};

解決方法

src/router/Router.tsx
+import { Route, Routes } from "react-router";
import { Cards } from "../cards";
import { DynamicSegments } from "../DynamicSegments";

export const Router = () => {
  return (
    <>
+     <Routes> //RoutesでRouteを囲む
        <Route path="/" element={<Cards />} />
        <Route path="/cards/:id" element={<DynamicSegments />} />
+     </Routes>
    </>
  );
};

おわりに

エラーメッセージを翻訳すると、ちゃんと <Route>を<Routes>で囲んでください と言ってくれていました。
また、公式ドキュメントでも ルートの設定 で書いていました。
ちょっとずつではあるがドキュメントを読む癖がついてきた気がする。:eyes:

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?