Skip to content

Commit

Permalink
feat(menu): add undo/redo placeholders to menu
Browse files Browse the repository at this point in the history
  • Loading branch information
stuf committed Oct 7, 2019
1 parent 4c36d38 commit 62e032a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/core/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ const initialState = {
},
],
},
menu: [{ label: 'Save' }, { label: 'Load' }],
menu: [
{ label: 'Save' },
{ label: 'Load' },
{ label: 'Undo' },
{ label: 'Redo' },
],
};

/**
Expand Down

0 comments on commit 62e032a

Please sign in to comment.