Created
April 12, 2022 06:47
-
-
Save pushkar100/1e6317a1e4b66bf76d77dc274db76803 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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