From 8a41295d6f583c79c588bccf395a9d651d294b00 Mon Sep 17 00:00:00 2001 From: Dmitry Borisenko Date: Sun, 12 Sep 2021 19:32:16 +0000 Subject: [PATCH] working version --- src/App.svelte | 4 ++-- src/{wInput.svelte => Myinput.svelte} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{wInput.svelte => Myinput.svelte} (100%) diff --git a/src/App.svelte b/src/App.svelte index b21ae31..48dec5d 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -12,7 +12,7 @@ //router.mode.memory(); // enables in-memory navigation method import Card from "./Card.svelte"; import Input from "./Input.svelte"; - import wInput from "./wInput.svelte"; + import Myinput from "./Myinput.svelte"; onMount(async () => { WSpush("mounted"); @@ -113,7 +113,7 @@ {#each wigets as widget, i} {#if widget.widget === "input"} - + {/if} {/each} diff --git a/src/wInput.svelte b/src/Myinput.svelte similarity index 100% rename from src/wInput.svelte rename to src/Myinput.svelte