Fixed documentation mistake on configuring routes

Signed-off-by: Jasper Boeijenga <jboeijenga@gmail.com>
This commit is contained in:
Jasper Boeijenga
2023-09-28 13:43:41 +02:00
parent 5b1daa2c41
commit a6e09d8712
+1 -1
View File
@@ -79,5 +79,5 @@ This extension can then be imported and used in the app as follow, typically
placed within the top-level `<FlatRoutes>`:
```tsx
<Route route="/any-path" element={<ExamplePage />} />
<Route path="/any-path" element={<ExamplePage />} />
```