Created
November 13, 2021 16:33
-
-
Save hieptl/b9c075bf0692c899d5d54285c13388b1 to your computer and use it in GitHub Desktop.
SubHeader.js - Discord Clone
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
const SubHeader = (props) => { | |
const { title } = props; | |
return ( | |
<div className="friends__sub-header"> | |
<span>{title}</span> | |
</div> | |
); | |
}; | |
export default SubHeader; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment