import type React from "react"
import { DashboardLayout } from "@/components/dashboard-layout"

export default function VoiceCallLayoutWrapper({
    children,
}: {
    children: React.ReactNode
}) {
    return <DashboardLayout>{children}</DashboardLayout>
}
