25 lines
604 B
JavaScript
25 lines
604 B
JavaScript
const html = require('choo/html');
|
|
const Component = require('choo/component');
|
|
/*const assets = require('../../common/assets');*/
|
|
|
|
class Promo extends Component {
|
|
constructor(name, state) {
|
|
super(name);
|
|
this.state = state;
|
|
}
|
|
|
|
update() {
|
|
return false;
|
|
}
|
|
|
|
createElement() {
|
|
return html`
|
|
<send-promo
|
|
class="send-promo w-full flex-row items-center content-center justify-center bg-white text-grey-80 px-4 flex border-b border-grey-banner leading-normal dark:bg-grey-90 dark:text-grey-20 dark:border-grey-80"
|
|
></send-promo>
|
|
`;
|
|
}
|
|
}
|
|
|
|
module.exports = Promo;
|