2021-07-05 22:07:33 +02:00

19 lines
360 B
JavaScript

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