import React from "react" import Style from "./PageWithHeader.module.css" import classNames from "classnames" export default function PageWithHeader({ header, buttons, children, className, ...props }) { return (
{header}
{buttons ?
{buttons}
: null}
{children}
) }