mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-01 08:07:23 +00:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
#!/usr/bin/env node
|
|
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import * as slint from "slint-ui";
|
|
|
|
const ui = slint.loadFile("../ui/demo.slint");
|
|
const window = new ui.AppWindow();
|
|
|
|
await window.run();
|