Initial Commit

This commit is contained in:
Rushil Umaretiya 2020-05-25 02:04:30 -04:00
parent fcfb344c7f
commit e96b8cfe92
2 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2020 Rushilwiz
Copyright (c) 2020 Rushil Umaretiya
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

12
MMM-MinimalCOVID19.js Normal file
View File

@ -0,0 +1,12 @@
Module.register("MMM-MinimalCOVID19", {
defaults: {},
start: function () {},
getDom: function() {
var element = document.createElement("div")
element.className = "myContent"
element.innerHTML = "Hello, World!"
return element
},
notificationReceived: function() {},
socketNotificationReceived: function() {},
})