0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/lib/mobiledoc/cards/hr.js
kirrg001 dd668892d7 Removed more 'use strict' usages
no issue

- after we have dropped node 4, we have removed all 'use strict' usages
- but they came back from older pull requests
2018-06-02 21:38:11 +02:00

7 lines
129 B
JavaScript

module.exports = {
name: 'hr',
type: 'dom',
render(opts) {
return opts.env.dom.createElement('hr');
}
};