10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
/* const height = require('./properties/height');
|
||
|
const width = require('./properties/width');
|
||
|
|
||
|
module.exports = (root, opts) => {
|
||
|
// properties
|
||
|
height(root, opts);
|
||
|
width(root, opts);
|
||
|
};
|
||
|
*/
|