mirror of
https://github.com/linsa-io/linsa.git
synced 2026-03-21 16:49:21 +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>
|
|
}
|