"use client"; const PageHeader = ({ title, description, children, action, className = "" }) => { return (

{title}

{description &&

{description}

}
{(children || action) && (
{action || children}
)}
); }; export default PageHeader;