Fourth weekend assignment, 9/19/21.
''Duration: Weekend Sprint''
A gallery of items relevant to my life, built in React. Each item in the gallery includes a like counter, a button to add additional likes, and a description which can be viewed by clicking the image.
- Use
axios
to retrieve data from the gallery module and store it inApp.jsx
- Create a
GalleryList
component to store all gallery data - Create a
GalleryItem
component to store a single instance of an image in a gallery -
- Should contain the number of likes, a like button, an image, and a description
-
- Image should swap places with description when clicked
-
- Like button makes an
Axios
PUT
call, increasing the number of likes for the specified image
- Like button makes an
- []