Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created November 13, 2021 16:33
Show Gist options
  • Save hieptl/b9c075bf0692c899d5d54285c13388b1 to your computer and use it in GitHub Desktop.
Save hieptl/b9c075bf0692c899d5d54285c13388b1 to your computer and use it in GitHub Desktop.
SubHeader.js - Discord Clone
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