Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created August 4, 2021 13:25
Show Gist options
  • Save hieptl/52f7c91a64f31a41e1db5b0f56f97e38 to your computer and use it in GitHub Desktop.
Save hieptl/52f7c91a64f31a41e1db5b0f56f97e38 to your computer and use it in GitHub Desktop.
Sidebar Row Component - Facebook Clone
function SidebarRow({ src, title, toggleModal }) {
return (
<div className="sidebar__row" onClick={() => toggleModal(true)}>
{src && (
<img src={src} className="sidebar__imgrow" />
)}
<p className="sidebar__rowtitle">{title}</p>
</div>
);
}
export default SidebarRow;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment