import { type PropsWithChildren } from "react";
import {
Drawer,
DrawerContent,
DrawerDescription,
DrawerHeader,
DrawerTitle,
} from "@/src/components/ui/drawer";
import { useSupportDrawer } from "@/src/features/support-chat/SupportDrawerProvider";
import { SupportDrawer } from "@/src/features/support-chat/SupportDrawer";
export function MobileDrawer({ children }: PropsWithChildren) {
const { open, setOpen } = useSupportDrawer();
return (
<>
{children}
{/* sr-only for screen readers and accessibility */}
Support
A list of resources and options to help you with your questions.
>
);
}