import Application from './javascript/Application.js'

let crimson_apps = [];

document.addEventListener('DOMContentLoaded', function() {

const applications = [... document.getElementsByTagName('crimson')]
applications.forEach(function(application, index){
    __crimson_apps__.push( new Application(application) );
});

});