import React from "react"; import { Drawer, DrawerBody, DrawerContent, DrawerCloseButton, DrawerOverlay, useBreakpointValue, } from "@chakra-ui/react"; import { ItemPageContent } from "./ItemPage"; function ItemPageDrawer({ item, isOpen, onClose }) { const placement = useBreakpointValue({ base: "bottom", lg: "right" }); return ( ); } export default ItemPageDrawer;