import { FC } from "react";

type props = {
  children: any;
  className?: string;
};
const PageHeader: FC<props> = ({ children, className = "" }) => {
  return (
    <div className={`bg-white mb-1  p-4 shadow-sm ${className}`}>
      {children}
    </div>
  );
};

export default PageHeader;
