import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from "@/components/ui/resizable" import EntryBody from "@/components/EntryBody" import EntryMetadata from "@/containers/EntryMetadata" import { useIsMobile } from "@/hooks/use-mobile" export default function Entry({ entryTitle, entryBody, history, metadata, isLoading }) { const isMobile = useIsMobile() const topPanelSize = isMobile ? 80 : 75 const bottomPanelSize = isMobile ? 20 : 25 const handleSize = isMobile ? "5px" : "1px" return (
) }