feat(Store): added store page

This commit is contained in:
sethburkart123
2024-09-13 16:01:48 +10:00
parent 8d08354f6c
commit 1272c60a4d
14 changed files with 385 additions and 8 deletions
+1 -2
View File
@@ -3,7 +3,7 @@ import { mount } from 'svelte';
import type { ComponentType } from 'svelte';
export default function renderSvelte(
Component: ComponentType,
Component: ComponentType | any,
mountPoint: ShadowRoot | HTMLElement,
props: Record<string, any> = {}
) {
@@ -19,6 +19,5 @@ export default function renderSvelte(
style.setAttribute("type", "text/css");
style.innerHTML = styles;
mountPoint.appendChild(style);
return app;
}