From 671e85e9c435a52f6fd0c9ed680ac34cb0ec77ea Mon Sep 17 00:00:00 2001 From: ModZero Date: Tue, 26 Jul 2022 05:48:06 +0200 Subject: [PATCH] Just clean up useless sample stuff --- .run/Run.run.xml | 19 ++ .run/Tauri Dev.run.xml | 19 ++ .run/ui_dev.run.xml | 12 + .vscode/tasks.json | 7 + LICENSE.txt | 661 +++++++++++++++++++++++++++++++++++++++++ README.md | 56 +--- package.json | 1 + src/App.svelte | 48 +-- src/lib/Counter.svelte | 3 +- src/main.ts | 3 - 10 files changed, 742 insertions(+), 87 deletions(-) create mode 100644 .run/Run.run.xml create mode 100644 .run/Tauri Dev.run.xml create mode 100644 .run/ui_dev.run.xml create mode 100644 LICENSE.txt diff --git a/.run/Run.run.xml b/.run/Run.run.xml new file mode 100644 index 0000000..22fd066 --- /dev/null +++ b/.run/Run.run.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.run/Tauri Dev.run.xml b/.run/Tauri Dev.run.xml new file mode 100644 index 0000000..a14f67e --- /dev/null +++ b/.run/Tauri Dev.run.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/.run/ui_dev.run.xml b/.run/ui_dev.run.xml new file mode 100644 index 0000000..018f65b --- /dev/null +++ b/.run/ui_dev.run.xml @@ -0,0 +1,12 @@ + + + + + +
- -

Vite + Svelte

- -
- -
- -

- Check out SvelteKit, the official Svelte app framework powered by Vite! -

- -

- Click on the Vite and Svelte logos to learn more -

+ +
- - \ No newline at end of file diff --git a/src/lib/Counter.svelte b/src/lib/Counter.svelte index 979b4df..0b98585 100644 --- a/src/lib/Counter.svelte +++ b/src/lib/Counter.svelte @@ -1,10 +1,11 @@ diff --git a/src/main.ts b/src/main.ts index 8c19493..3dc6ae5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -7,7 +7,4 @@ const app = new App({ target: document.getElementById('app') }) -invoke('greet', { name: 'world'}) - .then((response) => console.log(response)) - export default app