mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-04-23 03:17:51 +00:00
27 lines
471 B
JavaScript
27 lines
471 B
JavaScript
import {css, html, LitElement} from 'lit'
|
|
import {connect} from 'pwa-helpers'
|
|
import {store} from '../store.js'
|
|
|
|
class MyElement extends connect(store)(LitElement) {
|
|
static get properties () {
|
|
return {
|
|
}
|
|
}
|
|
|
|
static get styles () {
|
|
return css``
|
|
}
|
|
|
|
render () {
|
|
return html`
|
|
<style>
|
|
</style>
|
|
`
|
|
}
|
|
|
|
stateChanged (state) {
|
|
}
|
|
}
|
|
|
|
window.customElements.define('my-element', MyElement)
|