Open predrag-babic opened 1 month ago
As a user I want the ability to add a note to my transactions In order to have a better overviewf for each transaction
user
to add a note to my transactions
have a better overviewf for each transaction
feature/transaction-notes
TransactionDetailsPage
handleAddNote
useState
useLocalStorageState
handleEditNote
handleDeleteNote
Value Proposition
As a
user
I want the abilityto add a note to my transactions
In order tohave a better overviewf for each transaction
Description
Acceptance Criteria
Tasks
feature/transaction-notes
TransactionDetailsPage
component, add the note input fieldTransactionDetailsPage
component, create thehandleAddNote
function.handleAddNote
function to save the note when 'Enter' is pressed.useState
or a state management library (e.g.,useLocalStorageState
) to store the note in the transaction's state.TransactionDetailsPage
, implement thehandleEditNote
function.TransactionDetailsPage
, add thehandleDeleteNote
function.handleDeleteNote
function that removes the note when the Delete button is clicked.