Added in Logo's and worked on Avatars and Chats
This commit is contained in:
@@ -1,11 +1,16 @@
|
||||
"use client"
|
||||
|
||||
import { AppShell } from "@/components/layout/app-shell"
|
||||
import { UserProvider } from "@/providers/user-provider"
|
||||
|
||||
export default function DashboardLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return <AppShell>{children}</AppShell>
|
||||
return (
|
||||
<UserProvider>
|
||||
<AppShell>{children}</AppShell>
|
||||
</UserProvider>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user