JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://deck-of-cards.js.org/dist/deck.min.js"></script>
<link rel="stylesheet" href="https://deck-of-cards.js.org/example.css">

<div id="container"></div>

JavaScript

var $container = document.getElementById('container');

var deck = Deck();

deck.mount($container);

// Remove the 4th card from deck
var removedCards = deck.cards.splice(26, 13);

removedCards.forEach(function (removedCard) {
    removedCard.unmount();
});

deck.flip();
deck.fan();