File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ The following example includes a basic implementation of the `<APIKeys />` compo
61
61
``` tsx {{ filename: 'src/api-keys.tsx' }}
62
62
import { APIKeys } from ' @clerk/clerk-react'
63
63
64
- export default function APIKeysPage () {
64
+ export default function Page () {
65
65
return <APIKeys />
66
66
}
67
67
```
@@ -71,7 +71,7 @@ The following example includes a basic implementation of the `<APIKeys />` compo
71
71
``` tsx {{ filename: 'app/routes/api-keys.tsx' }}
72
72
import { APIKeys } from ' @clerk/react-router'
73
73
74
- export default function APIKeysPage () {
74
+ export default function Page () {
75
75
return <APIKeys />
76
76
}
77
77
```
@@ -83,11 +83,11 @@ The following example includes a basic implementation of the `<APIKeys />` compo
83
83
import { createFileRoute } from ' @tanstack/react-router'
84
84
85
85
export const Route = createFileRoute (' /api-keys' )({
86
- component: APIKeysPage ,
86
+ component: Page ,
87
87
})
88
88
89
- function APIKeysPage () {
90
- return <SignIn />
89
+ function Page () {
90
+ return <APIKeys />
91
91
}
92
92
```
93
93
</Tab >
You can’t perform that action at this time.
0 commit comments