Skip to content

Commit 4d0f4c9

Browse files
committed
docs: update Quickstart guide to include User component in App example
1 parent dc29ce8 commit 4d0f4c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react/QUICKSTART.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Replace:
9191
Update your `App.tsx` to include sign-in and sign-out functionality:
9292

9393
```tsx
94-
import { SignedIn, SignedOut, SignInButton, SignOutButton, User } from '@asgardeo/react'
94+
import { SignedIn, SignedOut, SignInButton, SignOutButton } from '@asgardeo/react'
9595
import './App.css'
9696

9797
function App() {
@@ -115,7 +115,7 @@ export default App
115115
You can also display user information by using the `User` component & the `UserProfile` component:
116116

117117
```diff
118-
import { User, UserProfile } from '@asgardeo/react'
118+
import { SignedIn, SignedOut, SignInButton, SignOutButton, User, UserProfile } from '@asgardeo/react'
119119
import './App.css'
120120

121121
function App() {

0 commit comments

Comments
 (0)