Skip to content

Commit e485ec6

Browse files
committed
fix incorrect component
1 parent 2bea637 commit e485ec6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/components/api-keys.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following example includes a basic implementation of the `<APIKeys />` compo
6161
```tsx {{ filename: 'src/api-keys.tsx' }}
6262
import { APIKeys } from '@clerk/clerk-react'
6363

64-
export default function APIKeysPage() {
64+
export default function Page() {
6565
return <APIKeys />
6666
}
6767
```
@@ -71,7 +71,7 @@ The following example includes a basic implementation of the `<APIKeys />` compo
7171
```tsx {{ filename: 'app/routes/api-keys.tsx' }}
7272
import { APIKeys } from '@clerk/react-router'
7373

74-
export default function APIKeysPage() {
74+
export default function Page() {
7575
return <APIKeys />
7676
}
7777
```
@@ -83,11 +83,11 @@ The following example includes a basic implementation of the `<APIKeys />` compo
8383
import { createFileRoute } from '@tanstack/react-router'
8484

8585
export const Route = createFileRoute('/api-keys')({
86-
component: APIKeysPage,
86+
component: Page,
8787
})
8888

89-
function APIKeysPage() {
90-
return <SignIn />
89+
function Page() {
90+
return <APIKeys />
9191
}
9292
```
9393
</Tab>

0 commit comments

Comments
 (0)