mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
format: run prettify
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { mount } from "svelte"
|
||||
import type { SvelteComponent } from "svelte"
|
||||
import style from './index.css?inline'
|
||||
import { mount } from "svelte";
|
||||
import type { SvelteComponent } from "svelte";
|
||||
import style from "./index.css?inline";
|
||||
|
||||
export default function renderSvelte(
|
||||
Component: SvelteComponent | any,
|
||||
@@ -13,11 +13,11 @@ export default function renderSvelte(
|
||||
standalone: false,
|
||||
...props,
|
||||
},
|
||||
})
|
||||
});
|
||||
|
||||
const styleElement = document.createElement('style')
|
||||
styleElement.textContent = style
|
||||
mountPoint.appendChild(styleElement)
|
||||
const styleElement = document.createElement("style");
|
||||
styleElement.textContent = style;
|
||||
mountPoint.appendChild(styleElement);
|
||||
|
||||
return app
|
||||
return app;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user