Initial ecommerce standalone package

This commit is contained in:
2026-06-10 14:06:16 +08:00
commit 3d98933e24
241 changed files with 135283 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
let darkGreenThemePromise: Promise<unknown> | null = null;
export function loadDarkGreenTheme(): Promise<unknown> {
darkGreenThemePromise ??= import("./themes/dark-green.css");
return darkGreenThemePromise;
}