2021-07-05 19:51:18 +02:00

23 lines
401 B
JavaScript

/* Magic Mirror Test config for default clock module
*
* By Sergey Morozov
* MIT Licensed.
*/
const configFactory = require("../../default.js");
const config = configFacory({
timeFormat: 12,
modules: [
{
module: "clock",
position: "middle_center"
}
]
});
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}