mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
force graph, palette
This commit is contained in:
7
web/components/custom/clerk/clerk-provider-client.tsx
Normal file
7
web/components/custom/clerk/clerk-provider-client.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
"use client"
|
||||
|
||||
import { ClerkProvider } from "@clerk/nextjs"
|
||||
|
||||
export const ClerkProviderClient = ({ children }: { children: React.ReactNode }) => {
|
||||
return <ClerkProvider>{children}</ClerkProvider>
|
||||
}
|
||||
7
web/components/custom/clerk/sign-in-client.tsx
Normal file
7
web/components/custom/clerk/sign-in-client.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
"use client"
|
||||
|
||||
import { SignIn } from "@clerk/nextjs"
|
||||
|
||||
export const SignInClient = () => {
|
||||
return <SignIn />
|
||||
}
|
||||
7
web/components/custom/clerk/sign-up-client.tsx
Normal file
7
web/components/custom/clerk/sign-up-client.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
"use client"
|
||||
|
||||
import { SignUp } from "@clerk/nextjs"
|
||||
|
||||
export const SignUpClient = () => {
|
||||
return <SignUp />
|
||||
}
|
||||
7
web/components/custom/clerk/signed-in-client.tsx
Normal file
7
web/components/custom/clerk/signed-in-client.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
"use client"
|
||||
|
||||
import { SignedIn } from "@clerk/nextjs"
|
||||
|
||||
export const SignedInClient = ({ children }: { children: React.ReactNode }) => {
|
||||
return <SignedIn>{children}</SignedIn>
|
||||
}
|
||||
Reference in New Issue
Block a user