/react_dynamic-list-of-goods

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

React dynamic list of goods

You have 3 button that should load the goods and show them on the page using the GoodsList.

  1. Load All goods should load and show all the goods;
  2. Load 5 first goods should do the next:
    • load all the goods;
    • sort them by name;
    • and show the first 5;
  3. Load red goods should load all the goods show only red ones;
  4. Server has only 1 endpoint returning all the goods, so you should do all the preparations in corresponding methods in /api/goods.
  5. GoodsList is almost finished, you just need to use corresponding colors for lis;

Instructions