Files
remnawave-minishop/bot/app/web/frontend/src/main.js
T

11 lines
179 B
JavaScript

import { mount } from "svelte";
import App from "./App.svelte";
import "./styles.css";
const target = document.getElementById("app");
if (target) {
mount(App, { target });
}