area1707 / grace-shopper

3 stars 0 forks source link

React Component - User Profile #46

Open rkaur01 opened 7 years ago

rkaur01 commented 7 years ago

Story: User should be able to view account details(Name, email, shipping address) as well as order history.

Implementation: Modify reducers/users to include a new thunk fetchSingleUser. Pull user information from reducer and display. Currently we have not implemented orders so just create a table with the following columns: orderid and status

rkaur01 commented 7 years ago

modify reducers/users to include a new thunk fetchSingleUser

rkaur01 commented 7 years ago

modify server/api/users to include GET '/api/users/:userId'

rkaur01 commented 7 years ago

add route to main.jsx

rkaur01 commented 7 years ago

Can view user data Blocker: need to complete order component in order to render order history