15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
import { CustomHTMLElement } from './lib/custom_html_element.mjs'
|
|
|
|
export class N2PageHistory extends CustomHTMLElement {
|
|
static {
|
|
this.tmpl = document.createElement('template')
|
|
this.tmpl.innerHTML = `
|
|
<div>History</div>
|
|
`
|
|
}
|
|
|
|
constructor() {
|
|
super()
|
|
}
|
|
}
|
|
customElements.define('n2-pagehistory', N2PageHistory)
|