From c4206bc04dff355b04035403a9f516f1d7909d0b Mon Sep 17 00:00:00 2001 From: Thilo Behnke Date: Sun, 19 Jun 2022 12:47:17 +0200 Subject: [PATCH] canvas rendering restored --- client/svelte-client/src/App.svelte | 4 +- client/svelte-client/src/Canvas.svelte | 93 ++++++++++++++++++++++++++ client/svelte-client/tsconfig.json | 4 +- 3 files changed, 97 insertions(+), 4 deletions(-) create mode 100644 client/svelte-client/src/Canvas.svelte diff --git a/client/svelte-client/src/App.svelte b/client/svelte-client/src/App.svelte index 0140e87..7e7c78b 100644 --- a/client/svelte-client/src/App.svelte +++ b/client/svelte-client/src/App.svelte @@ -1,13 +1,13 @@
-

Hello {name}!

-

Visit the Svelte tutorial to learn how to build Svelte apps.

+
diff --git a/client/svelte-client/tsconfig.json b/client/svelte-client/tsconfig.json index e17851c..bf07ac5 100644 --- a/client/svelte-client/tsconfig.json +++ b/client/svelte-client/tsconfig.json @@ -1,5 +1,5 @@ { "extends": "@tsconfig/svelte/tsconfig.json", "include": ["src/**/*", "src/node_modules/**/*"], - "exclude": ["node_modules/*", "__sapper__/*", "static/*"] - } \ No newline at end of file + "exclude": ["node_modules/*", "__sapper__/*", "static/*"], +}