mirror of
https://github.com/MagicMirrorOrg/MagicMirror.git
synced 2026-01-09 19:48:43 -05:00
19 lines
373 B
JavaScript
19 lines
373 B
JavaScript
/* Magic Mirror Test config sample module hello world default config
|
|
*
|
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
modules: [
|
|
{
|
|
module: "helloworld",
|
|
position: "bottom_bar"
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|