JSFiddle - React, Tailwind, and code Playground

by batcave

JavaScript

const products = [{
    id: 12345,
    name: 'Glödlampa 12V...',
    stockStatus: 'in-stock',
    price: {
      currentPrice: '300kr',
      previousPrice: '',
    }
  },
  {
    id: 12345,
    name: 'Glödlampa 12V...',
    fromPrice: '120kr',
    articles: [{
      id: 12345,
      name: 'Glödlampa 12V...',
      stockStatus: 'in-stock',
      price: {
        currentPrice: '300kr',
        previousPrice: '',
      }
    }]
  }
]