1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-06-05 21:59:25 +02:00

clean up exports and imports

This commit is contained in:
Daniel Waxweiler
2021-04-13 20:50:56 +02:00
parent 748649bde3
commit cf49fb47d6
6 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
import { DateTimeWrapper } from './date-time-wrapper'
import DateTimeWrapper from './date-time-wrapper'
import * as GraphqlWrapper from './graphql-wrapper'
import * as HtmlCreator from './html-creator'
import { createAnchorElement } from './html-creator'
const NAME = '<wordpress-name>'
@ -11,7 +11,7 @@ function displayEvents(data, list) {
for (let i = 0; i < eventsCount; i++) {
const li = document.createElement('li')
const a = HtmlCreator.createAnchorElement({ text: events[i].title, url: events[i].url })
const a = createAnchorElement({ text: events[i].title, url: events[i].url })
li.appendChild(a)
const br = document.createElement('br')