JSFiddle - React, Tailwind, and code Playground

JavaScript

['57x57', '72x72', '114x114', '144x144', '512x512'].forEach(function(size) {
    var element = document.createElement('link');
    element.rel = 'apple-touch-icon';
    // sizes is a non-standard attribute and poopy so we have to setAttribute
    element.setAttribute('sizes', size);
    element.href = 'icon' + size + '.png';
    this.appendChild(element);
}, document.getElementsByTagName('head')[0]);