Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created November 13, 2021 14:52
Show Gist options
  • Save hieptl/0374205c78e5e0cc2161581becb2d96e to your computer and use it in GitHub Desktop.
Save hieptl/0374205c78e5e0cc2161581becb2d96e to your computer and use it in GitHub Desktop.
Menu.js - Discord Clone
const Menu = (props) => {
const { isActive, onItemSelected, item } = props;
return (
<div className={`menu__item ${isActive ? 'menu__item--active' : ''}`} onClick={onItemSelected(item)}>{item.icon}</div>
);
};
export default Menu;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment