import React from "react" import PropTypes from "prop-types" export const Title = ({ title, xs }) => { if (title === "") { return null; } if (xs) { return (
{title}
) } else { return (

{title}

{title}

); } } Title.propTypes = { title: PropTypes.string, xs: PropTypes.bool, }; Title.defaultProps = { title: "", xs: false, };