Skip to content

Instantly share code, notes, and snippets.

@pushkar100
Created April 12, 2022 06:47
Show Gist options
  • Select an option

  • Save pushkar100/1e6317a1e4b66bf76d77dc274db76803 to your computer and use it in GitHub Desktop.

Select an option

Save pushkar100/1e6317a1e4b66bf76d77dc274db76803 to your computer and use it in GitHub Desktop.
import Menu from "./Menu";
import MenuButton from "./MenuButton";
import MenuItem from "./MenuItem";
export default () => (
<Menu hideButtons>
<MenuButton text="Exit" action={() => console.log("Exiting")} />
<MenuButton text="Settings" action={() => console.log("settings")} />
<MenuItem text="News" />
<MenuItem text="Serials" />
<MenuItem text="Sports" />
</Menu>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment