mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-09-08 08:47:13 +00:00
🔥 remove unused start menu items
This commit is contained in:
parent
71228485af
commit
d2a19d6d15
2 changed files with 20 additions and 18 deletions
6
TODO.md
6
TODO.md
|
@ -1,5 +1,7 @@
|
|||
- Implement start menu pages
|
||||
- CREATE DETAILED BREAKDOWN
|
||||
- Add Pokedex Menu
|
||||
- Add Pokemon Menu
|
||||
- Add Save Menu
|
||||
- Add Option Menu
|
||||
- What happens when you click on an item?
|
||||
- Add music
|
||||
- Add sound effects
|
||||
|
|
|
@ -27,14 +27,14 @@ const StartMenu = () => {
|
|||
show={show}
|
||||
close={() => dispatch(hideStartMenu())}
|
||||
menuItems={[
|
||||
{
|
||||
label: "Pokédex",
|
||||
action: () => console.log("TODO"),
|
||||
},
|
||||
{
|
||||
label: "Pokémon",
|
||||
action: () => console.log("TODO"),
|
||||
},
|
||||
// {
|
||||
// label: "Pokédex",
|
||||
// action: () => console.log("TODO"),
|
||||
// },
|
||||
// {
|
||||
// label: "Pokémon",
|
||||
// action: () => console.log("TODO"),
|
||||
// },
|
||||
{
|
||||
label: "Item",
|
||||
action: () => dispatch(showItemsMenu()),
|
||||
|
@ -43,14 +43,14 @@ const StartMenu = () => {
|
|||
label: "Player",
|
||||
action: () => dispatch(showPlayerMenu()),
|
||||
},
|
||||
{
|
||||
label: "Save",
|
||||
action: () => console.log("TODO"),
|
||||
},
|
||||
{
|
||||
label: "Option",
|
||||
action: () => console.log("TODO"),
|
||||
},
|
||||
// {
|
||||
// label: "Save",
|
||||
// action: () => console.log("TODO"),
|
||||
// },
|
||||
// {
|
||||
// label: "Option",
|
||||
// action: () => console.log("TODO"),
|
||||
// },
|
||||
]}
|
||||
/>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue