UNPKG

@digital-blueprint/bulletin-app

Version:

[GitHub Repository](https://github.com/digital-blueprint/bulletin-app) | [npmjs package](https://www.npmjs.com/package/@digital-blueprint/bulletin-app) | [Unpkg CDN](https://unpkg.com/browse/@digital-blueprint/bulletin-app/) | [Bulletin Bundle](https://gi

27 lines (22 loc) 756 B
import {css, html} from 'lit'; import * as commonUtils from '@dbp-toolkit/common/utils'; import * as commonStyles from '@dbp-toolkit/common/src/styles.js'; import DBPBulletinLitElement from './dbp-bulletin-lit-element.js'; class ViewJobOffers extends DBPBulletinLitElement { render() { return html` <div class="notification is-info"> View job offers activity placeholder: functionality will be added here. </div> `; } static get styles() { return css` ${commonStyles.getNotificationCSS()} .notification { margin-bottom: 0; } `; } } commonUtils.defineCustomElement('dbp-bulletin-view-job-offers', ViewJobOffers);