🔥 remove unused start menu items

This commit is contained in:
Chase Manning 2023-09-14 09:02:26 +01:00
commit d2a19d6d15
2 changed files with 20 additions and 18 deletions
TODO.md
src/components

View file

@ -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

View file

@ -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"),
// },
]}
/>
);