python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I match if the current route matches a pattern in React Router Dom v6?
I've got:
export const ACCOUNT_PORTAL_PATHS = [
'home/*',
'my-care/*',
'chats/*',
'profile/*',
'programs/*',
'completion/*',
]
If the current path is any of th...
Shamoon
Votes: 0
Answers: 1
Import <Route> in react-router-dom v6 from subrepository - context error
This is my project structure:
-Project:
-public
-src
- ...
-index.tsx
-views
-App.tsx
-Layout.tsx
-components
- ...
-common &l...
Fruitcake_Gary
Votes: 0
Answers: 0
Difference between {Link} and {useNavigate} from 'react-router-dom'
Can anyone please explain the differences between {Link} and {useNavigate} from 'react-router-dom'? I am new to React and I see both {Link} and {useNavigate} are used to navigate through routes. So ho...
Tanh
Votes: 0
Answers: 4
React Router v6 - How to use @ symbol in route?
I'm using react-router-dom to manage my routes:
<Routes>
<Route path="/" element={<MainLayout />}>
<Route index element={<Home />} />
<Ro...
Agi Dev
Votes: 0
Answers: 1