mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 06:23:59 +08:00
18 lines
482 B
JavaScript
18 lines
482 B
JavaScript
import { createWidget } from 'discourse/widgets/widget';
|
|
import { h } from 'virtual-dom';
|
|
|
|
export default createWidget('post-placeholder', {
|
|
tagName: 'article.placeholder',
|
|
|
|
html() {
|
|
return h('div.row', [
|
|
h('div.topic-avatar', h('div.placeholder-avatar')),
|
|
h('div.topic-body', [
|
|
h('div.placeholder-text'),
|
|
h('div.placeholder-text'),
|
|
h('div.placeholder-text')
|
|
])
|
|
]);
|
|
}
|
|
});
|