mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-04-27 13:27:51 +00:00
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
import { html, LitElement } from 'lit'
|
|
import { connect } from 'pwa-helpers'
|
|
import { store } from '../store'
|
|
|
|
class MyElement extends connect(store)(LitElement) {
|
|
render () {
|
|
return html`<style></style>`
|
|
}
|
|
}
|
|
|
|
window.customElements.define('my-element', MyElement) |