Merge pull request #20220 from jboeijenga/docs/plugin-development-fix

docs: fixed documentation on configuring routes
This commit is contained in:
Patrik Oldsberg
2023-09-28 14:04:46 +02:00
committed by GitHub
+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 />} />
```