Skip to content

Instantly share code, notes, and snippets.

@yjose
Created February 19, 2018 21:38
Show Gist options
  • Save yjose/fe224a07cdac48c7c1c55901d773c9ad to your computer and use it in GitHub Desktop.
Save yjose/fe224a07cdac48c7c1c55901d773c9ad to your computer and use it in GitHub Desktop.
import React from "react";
export default ({ open}) => (
<div className={open ? "burger-menu open" : "burger-menu"}>
<div className="bar1" key="b1" />
<div className="bar2" key="b2" />
<div className="bar3" key="b3" />
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment