export const PageBodyWrapper = ({ children, className, ...props }) => (
{children}
) // export const PageBodyWrapper = styled.div` // min-height: calc(100vh - 105px); // @media screen and (min-width: 768px) { // min-height: 100vh; // } // ` export const ElementTitle = ({ children, noMarignBottom = false, className = '', }) => (
{children}
)