JSFiddle - React, Tailwind, and code Playground

by kyllle

HTML

if(response.backdrop_path) {
            response.backdrop_small = 'http://image.tmdb.org/t/p/w500/'+response.backdrop_path;
            response.backdrop_large = 'http://image.tmdb.org/t/p/w1280/'+response.backdrop_path;
        } else {
            response.backdrop_small = '../images/coming-soon--small.jpg';
            response.backdrop_large = '../images/coming-soon--large.jpg';
        }

        return response;