Skip to content

Commit

Permalink
Update MobileMenu.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorSvertoka committed Sep 17, 2023
1 parent d503cad commit bf48644
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/MobileMenu/MobileMenu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
import sprite from '../../images/sprite.svg';
import images from '../../images/0-default.jpg';

export const MobileMenu = ({ isOpen }) => {
const MobileMenu = ({ isOpen }) => {
const [menuIsOpen, setMenuIsOpen] = useState(isOpen);

// const openMenu = () => {
Expand Down Expand Up @@ -76,3 +76,5 @@ export const MobileMenu = ({ isOpen }) => {
MobileMenu.propTypes = {
isOpen: PropTypes.bool.isRequired,
};

export default MobileMenu;

0 comments on commit bf48644

Please sign in to comment.