Dear students,

In our next video, we will be working on displaying Select Category items on the Home Screen of our application. To avoid wasting time, I have already come up with a list of categories that we will be using for this purpose.

Here are the categories that you will need to copy for your use:

const categories = [
  {
    categoryId: 1,
    name: 'Highlight',
  },
  {
    categoryId: 2,
    name: 'Environment',
  },
  {
    categoryId: 3,
    name: 'Education',
  },
  {
    categoryId: 4,
    name: 'Clothing and Accessories',
  },
  {
    categoryId: 5,
    name: 'Household goods',
  },
  {
    categoryId: 6,
    name: 'Electronics',
  },
  {
    categoryId: 7,
    name: 'Toys and Games',
  },
  {
    categoryId: 8,
    name: 'Sports Equipment',
  },
  {
    categoryId: 9,
    name: 'Books and Media',
  },
  {
    categoryId: 10,
    name: 'Health and Beauty Products',
  },
  {
    categoryId: 11,
    name: 'Office supplies',
  },
  {
    categoryId: 12,
    name: 'Tools and Hardware',
  },
  {
    categoryId: 13,
    name: 'Art and Craft Supplies',
  },
];