mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
"use client"
|
|
|
|
import { SignedIn } from "@clerk/nextjs"
|
|
|
|
export const SignedInClient = ({ children }: { children: React.ReactNode }) => {
|
|
return <SignedIn>{children}</SignedIn>
|
|
}
|