import React from "react"; export default function ChatHeader({ title = "Title of Chat" }) { return (

{title}

); }