force graph, palette

This commit is contained in:
Nikita
2024-08-30 16:19:29 +03:00
parent 9e89959dd4
commit 32352ca5f4
38 changed files with 1602 additions and 243 deletions

View File

@@ -0,0 +1,7 @@
"use client"
import { SignedIn } from "@clerk/nextjs"
export const SignedInClient = ({ children }: { children: React.ReactNode }) => {
return <SignedIn>{children}</SignedIn>
}