MagicMirror/tests/configs/modules/compliments/compliments_anytime.js
Karsten Hassel bbb3accf0c use factory
2021-07-05 19:45:58 +02:00

31 lines
582 B
JavaScript

/* Magic Mirror Test config compliments with anytime type
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const configFactory = require('../../default.js')
const config = configFacory({
timeFormat: 12,
modules: [
{
module: "compliments",
position: "middle_center",
config: {
compliments: {
morning: [],
afternoon: [],
evening: [],
anytime: ["Anytime here"]
}
}
}
]
});
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}