2020-12-29 12:12:18 +01:00
|
|
|
import './brand-byline.js';
|
|
|
|
import './brand-logo.js';
|
2021-04-14 22:56:59 +02:00
|
|
|
import { CustomElement } from './element.js';
|
2020-12-29 12:12:18 +01:00
|
|
|
import { api } from '@converse/headless/core';
|
2020-10-01 17:00:38 +02:00
|
|
|
import { html } from 'lit-html';
|
|
|
|
|
|
|
|
|
2021-04-14 22:56:59 +02:00
|
|
|
export class ConverseBrandHeading extends CustomElement {
|
|
|
|
|
|
|
|
render () { // eslint-disable-line class-methods-use-this
|
|
|
|
return html`
|
|
|
|
<converse-brand-logo></converse-brand-logo>
|
|
|
|
<converse-brand-byline></converse-brand-byline>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
api.elements.define('converse-brand-heading', ConverseBrandHeading);
|