- React Template Startup Readme
- Or You can clone it and start editing here
$ git clone [email protected]:nss-evening-cohort-21/InCRUDibles.git
$ cd InCRUDibles
- The ideal user for Pintwist is anyone trying to keep track of their favorite collection of images
- They want to keep notes on project inspirations organized with pins of images in collections of boards
- Full CRUD
- Searches Pins
- Private and public pins/boards
https://www.loom.com/share/8331fafbc0ef4de49a8f81d9fd316573
-
Assumption: Each bin can fall under only one board. Boards can have many pins
const getSearchResults = () => {
getPins(user.uid).then((searchResultsArray) => {
const filterResults = searchResultsArray.filter((pins) => pins.name.toLowerCase().includes(searchInput)
|| pins.description.toLowerCase().includes(searchInput)
|| pins.board_id.toLowerCase().includes(searchInput));
setSearchResults(filterResults);
});
};