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

10 lines
144 B
JavaScript
Raw Normal View History

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