12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import type { ReactNode } from "react";
|
|
import { ChatWidget } from "@/components/features/pacientes/chat-widget";
|
|
|
|
export default function PacienteLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<>
|
|
{children}
|
|
<ChatWidget />
|
|
</>
|
|
);
|
|
}
|