Migrate utils.js (#9)

* Rename js to ts

* Migrate utils
This commit is contained in:
Chenlei Hu
2024-06-14 14:38:49 -04:00
committed by GitHub
parent bcf3a39de7
commit d85cff385d
3 changed files with 8 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
import { addStylesheet } from "../utils.js";
import { addStylesheet } from "../utils";
addStylesheet(import.meta.url);

View File

@@ -1,6 +1,6 @@
import { api } from "../api.js";
import { $el } from "../ui";
import { addStylesheet } from "../utils.js";
import { addStylesheet } from "../utils";
import { createSpinner } from "./spinner.js";
export class UserSelectionScreen {