<RedirectToUserProfile />
Navigate to the user profile URL
Overview
Rendering a <RedirectToUserProfile/>
component will navigate to the user profile URL which has been configured in your application instance. You can find the configuration on the Paths page.
This component will use the custom navigate
function from the <ClerkProvider/>
component if one is given - otherwise, it will trigger a full page reload with the new URL location.
Usage
Make sure you've followed the installation guide for Clerk React before running the snippets below.
The example below shows a page which is normally accessible by authenticated users. All other visitors (unauthenticated users) will get redirected to the sign in page.
The <SignedIn/> and <SignedOut/> components work together as a conditional, allowing the <RedirectToUserProfile />
component to be rendered only for authenticated users.
1import {2ClerkProvider,3SignedOut,4SignedIn,5RedirectToSignIn,6RedirectToUserProfile,7} from "@clerk/clerk-react";89function App() {10return (11<ClerkProvider publishableKey="clerk-pub-key">12{/* Signed in users will get redirected to13the user profile page */}14<SignedIn>15<RedirectToUserProfile />16</SignedIn>1718<SignedOut>19<RedirectToSignIn />20</SignedOut>21</ClerkProvider>22);23}2425export default App;
Props
This component accepts no props.