Remove unused imports

This commit is contained in:
Cadence Ember 2022-11-15 20:49:25 +13:00
parent bf6efde979
commit 324e34eb72
Signed by: cadence
GPG Key ID: BC1C2C61CF521B17
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
// sample: bandori/wiki/BanG_Dream!_Wikia
// sample: ensemble-stars/wiki/The_English_Ensemble_Stars_Wiki
import {h, htm, render, useState, useEffect, createContext, useContext, signal, computed, effect} from "./preact.js"
import {h, htm, render, signal, computed, effect} from "./preact.js"
const html = htm.bind(h)
const now = signal(Date.now())

View File

@ -1,4 +1,4 @@
import {h, htm, render, useState, useEffect, createContext, useContext, signal, computed, effect} from "./preact.js"
import {h, htm, render, signal, computed, effect} from "./preact.js"
const html = htm.bind(h)
const classNames = classArr => classArr.filter(el => el).join(" ")