Skip to content

Commit

Permalink
Move components
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPower committed May 16, 2024
1 parent 8f711f8 commit cfa8613
Show file tree
Hide file tree
Showing 19 changed files with 9 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import A from "../components/A.svelte";
import A from "$lib/components/A.svelte";
export let isOpen = false;
export let displayType: "desktop" | "mobile";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script lang="ts">
import Sidebar from "./Sidebar.svelte";
import Sidebar from "$lib/components/Sidebar.svelte";
import { onMount } from "svelte";
import "../app.css";
import Navbar from "../components/Navbar.svelte";
import Navbar from "$lib/components/Navbar.svelte";
let displayType: "desktop" | "mobile";
Expand Down
4 changes: 2 additions & 2 deletions src/routes/[year]/[month]/[day]/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import Input from "../../../../components/InputField.svelte";
import Input from "$lib/components/InputField.svelte";
import dayjs from "dayjs";
import BlockList from "../../../../components/BlockList.svelte";
import BlockList from "$lib/components/BlockList.svelte";
export let data;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/agenda/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import BlockList from "../../components/BlockList.svelte";
import BlockList from "$lib/components/BlockList.svelte";
export let data;
</script>
Expand Down
6 changes: 3 additions & 3 deletions src/routes/login/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import A from "../../components/A.svelte";
import Button from "../../components/Button.svelte";
import Input from "../../components/Input.svelte";
import A from "$lib/components/A.svelte";
import Button from "$lib/components/Button.svelte";
import Input from "$lib/components/Input.svelte";
import type { PageData } from "./$types";
export let data: PageData;
Expand Down

0 comments on commit cfa8613

Please sign in to comment.