Created
March 6, 2020 21:34
-
-
Save ericmasiello/ed1f0e8598c23f5c9e9f3ae6ac3d2124 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
function Title(props) { | |
const { as: Component, children } = props; | |
return <Component className="title">{children}</Component> | |
} | |
Title.defaultProps = { | |
as: 'h1', | |
}; | |
export default Title; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment