mirror of
https://github.com/slint-ui/slint.git
synced 2025-07-07 21:25:33 +00:00
12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// ANCHOR: main
|
|
// main.js
|
|
import * as slint from "slint-ui";
|
|
|
|
const ui = slint.loadFile(new URL("./ui/app-window.slint", import.meta.url));
|
|
const mainWindow = new ui.MainWindow();
|
|
await mainWindow.run();
|
|
|
|
// ANCHOR_END: main
|