mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import "uno.css";
|
|
import "./app.css";
|
|
import App from "./App.svelte";
|
|
|
|
const app = new App({
|
|
target: document.querySelector("#app"),
|
|
});
|
|
|
|
export default app;
|