import React from "react"; import VersionListSkeleton from "./VersionListSkeleton"; const SkeletonLine = ({ height = 16, width = "100%", className = "" }) => (
); const DocumentDetailsSkeleton = () => { return (

Document Details

{/* Row 1 */}
{/* Row 2 */}
{/* Row 3 */}
{/* Row 6 - Description */}
{/* Version list skeleton */}
); }; export default DocumentDetailsSkeleton;