diff --git a/client-svelte/src/App.svelte b/client-svelte/src/App.svelte index c08a390..c252f29 100644 --- a/client-svelte/src/App.svelte +++ b/client-svelte/src/App.svelte @@ -8,7 +8,7 @@ type CreateTodo, } from "./lib/todo.store.js"; import TodoList from "./lib/TodoList.svelte"; - import ErrorMessage from "./Error.svelte"; + import ErrorMessage from "./lib/Error.svelte"; import Loading from "./Loading.svelte"; onMount(async () => { diff --git a/client-svelte/src/Error.svelte b/client-svelte/src/lib/Error.svelte similarity index 100% rename from client-svelte/src/Error.svelte rename to client-svelte/src/lib/Error.svelte diff --git a/client-svelte/src/Loading.svelte b/client-svelte/src/lib/Loading.svelte similarity index 100% rename from client-svelte/src/Loading.svelte rename to client-svelte/src/lib/Loading.svelte