mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-04 10:52:17 +02:00
* fix: fix tooltip bug * feat: add Twilio with CloudFlare configuration * chore: update Tella Video
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
import BaseHeader from "@/components/header/BaseHeader"
|
|
|
|
export default function ConfigureTelephonyLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<>
|
|
<BaseHeader />
|
|
{children}
|
|
</>
|
|
)
|
|
}
|