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
// Instanciate a deck with all cards
var deck = Deck();
// display it in a html container
var $container = document.getElementById('container');
deck.mount($container);
deck.shuffle();
deck.flip();
deck.fan();