import { ChatThread } from "@/components/chat-thread"; // Standalone chat screen for the driver side. Reuses the same ChatThread as // the rider's (tabs) Chat screen, but outside the rider's (tabs) navigator — // routing a driver into "/(root)/(tabs)/chat" would mount the rider's tab bar // (Home/Rides/Chat/Profile/Settings) around them, exposing rider-only screens // and clashing visually with the composer at the bottom. No tab bar here, so // no extra clearance is needed. const DriverChat = () => ; export default DriverChat;